embark/webpack.config.js

10 lines
184 B
JavaScript
Raw Normal View History

2016-08-26 11:01:22 +00:00
module.exports = {
entry: './js/embark.js',
output: {
2017-07-03 23:10:32 +00:00
libraryTarget: 'umd',
2016-08-26 11:01:22 +00:00
library: 'EmbarkJS',
2017-07-03 23:10:32 +00:00
path: __dirname + '/js/build',
2016-08-26 11:01:22 +00:00
filename: 'embark.bundle.js'
}
};