From 4856a8113d1a943c73d861387554e2366e4756f6 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Thu, 6 Jul 2017 17:34:20 -0500 Subject: [PATCH] chore(build): update build dest --- packages/core/package.json | 2 +- packages/core/stencil.config.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/core/package.json b/packages/core/package.json index 8814084203..3bcba5c441 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -6,7 +6,7 @@ "scripts": { "build": "npm run copy.vendor && stencil build --prod", "dev": "npm run copy.vendor && stencil build --watch --debug", - "copy.vendor": "mkdir -p ./collection/vendor && cp -Rf ./src/vendor ./collection", + "copy.vendor": "mkdir -p ./dist/collection/vendor && cp -Rf ./src/vendor ./dist/collection", "link.stencil": "npm link @stencil/core", "test": "jest" }, diff --git a/packages/core/stencil.config.js b/packages/core/stencil.config.js index 9646b4d149..16714b59a1 100644 --- a/packages/core/stencil.config.js +++ b/packages/core/stencil.config.js @@ -1,5 +1,6 @@ exports.config = { namespace: 'Ionic', + buildDest: 'dist', generateCollection: true, bundles: [ { components: ['ion-app', 'ion-content', 'ion-footer', 'ion-header', 'ion-navbar', 'ion-page', 'ion-title', 'ion-toolbar'] }, @@ -17,5 +18,5 @@ exports.config = { { components: ['ion-spinner'] }, { components: ['ion-toggle'] } ], - preamble: '(C) Ionic Vanilla https://ionicframework.com - MIT License' + preamble: '(C) Ionic http://ionicframework.com - MIT License' };