chore(): Added dev server dependency and some configuration in the stencil config for core.

This commit is contained in:
Josh Thomas
2017-07-14 11:28:07 -05:00
parent bde8dc028f
commit 4958c7e53a
3 changed files with 257 additions and 792 deletions

File diff suppressed because it is too large Load Diff

View File

@ -18,6 +18,7 @@
"@stencil/core": "0.0.2-1" "@stencil/core": "0.0.2-1"
}, },
"devDependencies": { "devDependencies": {
"@stencil/dev-server": "0.0.8",
"concurrently": "^3.5.0", "concurrently": "^3.5.0",
"ionicons": "3.0.0" "ionicons": "3.0.0"
}, },

View File

@ -22,3 +22,7 @@ exports.config = {
], ],
preamble: '(C) Ionic http://ionicframework.com - MIT License' preamble: '(C) Ionic http://ionicframework.com - MIT License'
}; };
exports.devServer = {
watchGlob: ['demos/**/*', '/dist/***/*', 'src/**/*.html']
}