@@ -12,7 +12,6 @@ import babel from '@easy-webpack/config-babel'
1212import html from '@easy-webpack/config-html'
1313import css from '@easy-webpack/config-css'
1414import fontAndImages from '@easy-webpack/config-fonts-and-images'
15- import globalBluebird from '@easy-webpack/config-global-bluebird'
1615import globalJquery from '@easy-webpack/config-global-jquery'
1716import globalRegenerator from '@easy-webpack/config-global-regenerator'
1817import generateIndexHtml from '@easy-webpack/config-generate-index-html'
@@ -37,8 +36,7 @@ const coreBundles = {
3736 'aurelia-polyfills' ,
3837 'aurelia-pal' ,
3938 'aurelia-pal-browser' ,
40- 'regenerator-runtime' ,
41- 'bluebird'
39+ 'regenerator-runtime'
4240 ] ,
4341 // these will be included in the 'aurelia' bundle (except for the above bootstrap packages)
4442 aurelia : [
@@ -87,7 +85,7 @@ let config = generateConfig(
8785 * Don't be afraid, you can put bits of standard Webpack configuration here
8886 * (or at the end, after the last parameter, so it won't get overwritten by the presets)
8987 * Because that's all easy-webpack configs are - snippets of premade, maintained configuration parts!
90- *
88+ *
9189 * For Webpack docs, see: https://webpack.js.org/configuration/
9290 */
9391
@@ -101,7 +99,6 @@ let config = generateConfig(
10199 html ( ) ,
102100 css ( { filename : 'styles.css' , allChunks : true , sourceMap : false } ) ,
103101 fontAndImages ( ) ,
104- globalBluebird ( ) ,
105102 globalJquery ( ) ,
106103 globalRegenerator ( ) ,
107104 generateIndexHtml ( { minify : ENV === 'production' } ) ,
0 commit comments