mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
committed by
Eugenio Romano
parent
8959476941
commit
0b246b8211
17
ng2-components/ng2-activiti-processlist/webpack.build.js
Normal file
17
ng2-components/ng2-activiti-processlist/webpack.build.js
Normal file
@@ -0,0 +1,17 @@
|
||||
const webpack = require("webpack");
|
||||
const webpackMerge = require('webpack-merge');
|
||||
const commonConfig = require('../config/webpack.common.js');
|
||||
|
||||
module.exports = webpackMerge(commonConfig, {
|
||||
|
||||
output: {
|
||||
filename: './bundles/[name].js',
|
||||
library: '[name]',
|
||||
libraryTarget: 'umd',
|
||||
chunkFilename: '[id].chunk.js'
|
||||
},
|
||||
|
||||
entry: {
|
||||
"ng2-activiti-processlist": "./index.ts"
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user