chore(build): update build dest

This commit is contained in:
Adam Bradley
2017-07-06 17:34:20 -05:00
parent 44c98b2da6
commit 4856a8113d
2 changed files with 3 additions and 2 deletions

View File

@ -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"
},

View File

@ -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'
};