chore: fix paths

This commit is contained in:
Liam DeBeasi
2024-03-08 01:46:32 +00:00
parent bef3e77f01
commit c200c36f11
4 changed files with 14 additions and 14 deletions

View File

@ -11,7 +11,7 @@ const typescriptPath = path.join(__dirname, '..', 'node_modules', '.bin');
* from the @ionic/angular package instead of @ionic/core.
*/
function copyCSS() {
const src = path.join(__dirname, '..', '..', '..', 'core', 'css');
const src = path.join(__dirname, '..', '..', 'core', 'css');
const dst = path.join(__dirname, '..','dist', 'css');
fs.removeSync(dst);

View File

@ -34,14 +34,14 @@ const getAngularOutputTargets = () => {
return [
angularOutputTarget({
componentCorePackage,
directivesProxyFile: '../packages/angular/src/directives/proxies.ts',
directivesArrayFile: '../packages/angular/src/directives/proxies-list.ts',
directivesProxyFile: '../angular/src/directives/proxies.ts',
directivesArrayFile: '../angular/src/directives/proxies-list.ts',
excludeComponents,
outputType: 'component',
}),
angularOutputTarget({
componentCorePackage,
directivesProxyFile: '../packages/angular/standalone/src/directives/proxies.ts',
directivesProxyFile: '../angular/standalone/src/directives/proxies.ts',
excludeComponents: [
...excludeComponents,
/**
@ -130,7 +130,7 @@ export const config: Config = {
includeImportCustomElements: true,
includePolyfills: false,
includeDefineCustomElements: false,
proxiesFile: '../packages/react/src/components/proxies.ts',
proxiesFile: '../react/src/components/proxies.ts',
excludeComponents: [
// Routing
'ion-router',
@ -167,7 +167,7 @@ export const config: Config = {
includeImportCustomElements: true,
includePolyfills: false,
includeDefineCustomElements: false,
proxiesFile: '../packages/vue/src/proxies.ts',
proxiesFile: '../vue/src/proxies.ts',
excludeComponents: [
// Routing
'ion-router',

View File

@ -7,7 +7,7 @@ const path = require('path');
* from the @ionic/react package instead of @ionic/core.
*/
function copyCSS() {
const src = path.join(__dirname, '..', '..', '..', 'core', 'css');
const src = path.join(__dirname, '..', '..', 'core', 'css');
const dst = path.join(__dirname, '..', 'css');
fs.removeSync(dst);

View File

@ -8,7 +8,7 @@ const path = require('path');
* from the @ionic/vue package instead of @ionic/core.
*/
function copyCSS() {
const src = path.join(__dirname, '..', '..', '..', 'core', 'css');
const src = path.join(__dirname, '..', '..', 'core', 'css');
const dst = path.join(__dirname, '..', 'css');
fs.removeSync(dst);