mirror of
https://github.com/locomotivemtl/locomotive-boilerplate.git
synced 2026-01-15 00:55:08 +08:00
31 lines
719 B
JavaScript
31 lines
719 B
JavaScript
module.exports = {
|
|
dev: {
|
|
options: {
|
|
transform: [['babelify', { presets: ['es2015'] }]],
|
|
watch : true, // use watchify for incremental builds!
|
|
browserifyOptions : {
|
|
debug : true // source mapping
|
|
}
|
|
},
|
|
files: {
|
|
'www/assets/scripts/app.js': [
|
|
'assets/scripts/**/*.js',
|
|
'!assets/scripts/vendors/*.js'
|
|
]
|
|
}
|
|
},
|
|
prod: {
|
|
options: {
|
|
transform: [['babelify', { presets: ['es2015'] }]],
|
|
browserifyOptions: { debug: false },
|
|
exclude: ''
|
|
},
|
|
files: {
|
|
'www/assets/scripts/app.js': [
|
|
'assets/scripts/**/*.js',
|
|
'!assets/scripts/vendors/*.js'
|
|
]
|
|
}
|
|
}
|
|
};
|