mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
parent
4c62409e8c
commit
3a300c20d4
@ -120,7 +120,6 @@ export class ActivitiDemoComponent implements AfterViewInit {
|
|||||||
);
|
);
|
||||||
this.dataProcesses.setSorting(new DataSorting('started', 'desc'));
|
this.dataProcesses.setSorting(new DataSorting('started', 'desc'));
|
||||||
|
|
||||||
|
|
||||||
// Uncomment this line to replace all 'text' field editors with custom component
|
// Uncomment this line to replace all 'text' field editors with custom component
|
||||||
// formRenderingService.setComponentTypeResolver('text', () => CustomEditorComponent, true);
|
// formRenderingService.setComponentTypeResolver('text', () => CustomEditorComponent, true);
|
||||||
|
|
||||||
|
@ -40,15 +40,18 @@ module.exports = webpackMerge(commonConfig, {
|
|||||||
|
|
||||||
// Reference: http://webpack.github.io/docs/list-of-plugins.html#uglifyjsplugin
|
// Reference: http://webpack.github.io/docs/list-of-plugins.html#uglifyjsplugin
|
||||||
// Minify all javascript, switch loaders to minimizing mode
|
// Minify all javascript, switch loaders to minimizing mode
|
||||||
// new webpack.optimize.UglifyJsPlugin({
|
new webpack.optimize.UglifyJsPlugin({
|
||||||
// mangle: {
|
output:{
|
||||||
// keep_fnames: true
|
comments: false
|
||||||
// },
|
},
|
||||||
// compressor: {
|
mangle: {
|
||||||
// screw_ie8: true,
|
keep_fnames: true
|
||||||
// warnings: false
|
},
|
||||||
// }
|
compressor: {
|
||||||
// }),
|
screw_ie8: true,
|
||||||
|
warnings: false
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
|
||||||
// Extract css files
|
// Extract css files
|
||||||
// Reference: https://github.com/webpack/extract-text-webpack-plugin
|
// Reference: https://github.com/webpack/extract-text-webpack-plugin
|
||||||
|
Loading…
x
Reference in New Issue
Block a user