mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
77 lines
2.5 KiB
JavaScript
77 lines
2.5 KiB
JavaScript
const webpackMerge = require('webpack-merge');
|
|
const UglifyJSPlugin = require('uglifyjs-webpack-plugin')
|
|
const commonConfig = require('./webpack.common.js');
|
|
const fs = require('fs');
|
|
const webpack = require('webpack');
|
|
const path = require('path');
|
|
|
|
module.exports = webpackMerge(commonConfig, {
|
|
|
|
// require those dependencies but don't bundle them
|
|
externals: [
|
|
/^\@angular\//,
|
|
/^rxjs\//,
|
|
/^\@ngx-translate\//,
|
|
'moment',
|
|
'minimatch',
|
|
'raphael',
|
|
'ng2-charts',
|
|
'alfresco-js-api',
|
|
'ng2-alfresco-core',
|
|
'ng2-alfresco-datatable',
|
|
'ng2-activiti-analytics',
|
|
'ng2-activiti-diagrams',
|
|
'ng2-activiti-form',
|
|
"ng2-activiti-tasklist",
|
|
'ng2-alfresco-documentlist',
|
|
'ng2-alfresco-upload',
|
|
],
|
|
|
|
output: {
|
|
filename: '[name]/bundles/[name].js',
|
|
library: '[name]',
|
|
libraryTarget: 'umd',
|
|
chunkFilename: '[id].chunk.js'
|
|
},
|
|
|
|
entry: {
|
|
"ng2-alfresco-core": "./ng2-alfresco-core/index.ts",
|
|
"ng2-alfresco-datatable": "./ng2-alfresco-datatable/index.ts",
|
|
"ng2-activiti-diagrams": "./ng2-activiti-diagrams/index.ts",
|
|
"ng2-activiti-analytics": "./ng2-activiti-analytics/index.ts",
|
|
"ng2-activiti-form": "./ng2-activiti-form/index.ts",
|
|
"ng2-activiti-tasklist": "./ng2-activiti-tasklist/index.ts",
|
|
"ng2-activiti-processlist": "./ng2-activiti-processlist/index.ts",
|
|
"ng2-alfresco-documentlist": "./ng2-alfresco-documentlist/index.ts",
|
|
"ng2-alfresco-login": "./ng2-alfresco-login/index.ts",
|
|
"ng2-alfresco-search": "./ng2-alfresco-search/index.ts",
|
|
"ng2-alfresco-social": "./ng2-alfresco-social/index.ts",
|
|
"ng2-alfresco-tag": "./ng2-alfresco-tag/index.ts",
|
|
"ng2-alfresco-upload": "./ng2-alfresco-upload/index.ts",
|
|
"ng2-alfresco-viewer": "./ng2-alfresco-viewer/index.ts",
|
|
"ng2-alfresco-webscript": "./ng2-alfresco-webscript/index.ts",
|
|
"ng2-alfresco-userinfo": "./ng2-alfresco-userinfo/index.ts"
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new UglifyJSPlugin({
|
|
sourceMap: true,
|
|
uglifyOptions: {
|
|
ie8: false,
|
|
ecma: 6,
|
|
output: {
|
|
comments: false,
|
|
beautify: false
|
|
},
|
|
warnings: false
|
|
}
|
|
}),
|
|
|
|
new webpack.BannerPlugin({
|
|
banner: fs.readFileSync(path.resolve(__dirname, './assets/license_header_add.txt'), 'utf8'),
|
|
entryOnly: true
|
|
})
|
|
]
|
|
});
|