|
|
|
@ -1,6 +1,4 @@ |
|
|
|
const webpack = require('webpack'), |
|
|
|
path = require('path'), |
|
|
|
fs = require('fs'); |
|
|
|
const webpack = require('webpack'), path = require('path'); |
|
|
|
|
|
|
|
const appRoot = path.resolve(__dirname, '..'); |
|
|
|
|
|
|
|
@ -34,7 +32,7 @@ const plugins = { |
|
|
|
// https://www.npmjs.com/package/@angular-devkit/build-optimizer
|
|
|
|
BuildOptimizerWebpackPlugin: require('@angular-devkit/build-optimizer').BuildOptimizerWebpackPlugin, |
|
|
|
// https://webpack.js.org/plugins/copy-webpack-plugin/
|
|
|
|
CopyPlugin : require('copy-webpack-plugin') |
|
|
|
CopyPlugin: require('copy-webpack-plugin') |
|
|
|
}; |
|
|
|
|
|
|
|
module.exports = function (env) { |
|
|
|
@ -213,13 +211,13 @@ module.exports = function (env) { |
|
|
|
{ from: './node_modules/simplemde/dist', to: 'dependencies/simplemde' }, |
|
|
|
|
|
|
|
{ from: './node_modules/tinymce/icons/default/icons.min.js', to: 'dependencies/tinymce/icons/default' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/advlist', to: 'dependencies/tinymce/plugins' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/code', to: 'dependencies/tinymce/plugins' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/image', to: 'dependencies/tinymce/plugins' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/link', to: 'dependencies/tinymce/plugins' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/lists', to: 'dependencies/tinymce/plugins' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/media', to: 'dependencies/tinymce/plugins' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/paste', to: 'dependencies/tinymce/plugins' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/advlist', to: 'dependencies/tinymce/plugins/advlist' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/code', to: 'dependencies/tinymce/plugins/code' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/image', to: 'dependencies/tinymce/plugins/image' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/link', to: 'dependencies/tinymce/plugins/link' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/lists', to: 'dependencies/tinymce/plugins/lists' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/media', to: 'dependencies/tinymce/plugins/media' }, |
|
|
|
{ from: './node_modules/tinymce/plugins/paste', to: 'dependencies/tinymce/plugins/paste' }, |
|
|
|
{ from: './node_modules/tinymce/skins', to: 'dependencies/tinymce/skins' }, |
|
|
|
{ from: './node_modules/tinymce/themes/silver', to: 'dependencies/tinymce/themes/silver' }, |
|
|
|
{ from: './node_modules/tinymce/tinymce.min.js', to: 'dependencies/tinymce' }, |
|
|
|
|