2017-07-05 21:08:51 +08:00
|
|
|
|
var path = require('path');
|
2018-07-09 15:08:56 +08:00
|
|
|
|
var AssetsPlugin = require('assets-webpack-plugin');
|
|
|
|
|
var CompressionPlugin = require('compression-webpack-plugin');
|
2017-11-27 20:11:28 +08:00
|
|
|
|
var commonLib = require('./common/plugin.js');
|
2017-07-25 14:18:57 +08:00
|
|
|
|
var assetsPluginInstance = new AssetsPlugin({
|
2017-07-25 15:07:55 +08:00
|
|
|
|
filename: 'static/prd/assets.js',
|
2018-07-09 15:08:56 +08:00
|
|
|
|
processOutput: function(assets) {
|
2017-07-25 15:07:55 +08:00
|
|
|
|
return 'window.WEBPACK_ASSETS = ' + JSON.stringify(assets);
|
|
|
|
|
}
|
2018-07-09 15:08:56 +08:00
|
|
|
|
});
|
2017-11-27 20:11:28 +08:00
|
|
|
|
var fs = require('fs');
|
2018-07-09 15:08:56 +08:00
|
|
|
|
var package = require('./package.json');
|
|
|
|
|
var yapi = require('./server/yapi');
|
2017-09-06 10:18:13 +08:00
|
|
|
|
|
|
|
|
|
var compressPlugin = new CompressionPlugin({
|
2018-07-09 15:08:56 +08:00
|
|
|
|
asset: '[path].gz[query]',
|
|
|
|
|
algorithm: 'gzip',
|
2017-09-06 10:18:13 +08:00
|
|
|
|
test: /\.(js|css)$/,
|
|
|
|
|
threshold: 10240,
|
2017-09-08 11:18:30 +08:00
|
|
|
|
minRatio: 0.8
|
2017-09-05 10:24:13 +08:00
|
|
|
|
});
|
|
|
|
|
|
2018-07-09 15:08:56 +08:00
|
|
|
|
function createScript(plugin, pathAlias) {
|
|
|
|
|
let options = plugin.options ? JSON.stringify(plugin.options) : null;
|
|
|
|
|
if (pathAlias === 'node_modules') {
|
|
|
|
|
return `"${plugin.name}" : {module: require('yapi-plugin-${
|
|
|
|
|
plugin.name
|
|
|
|
|
}/client.js'),options: ${options}}`;
|
2018-02-28 16:09:24 +08:00
|
|
|
|
}
|
2018-07-09 15:08:56 +08:00
|
|
|
|
return `"${plugin.name}" : {module: require('${pathAlias}/yapi-plugin-${
|
|
|
|
|
plugin.name
|
|
|
|
|
}/client.js'),options: ${options}}`;
|
2017-10-05 09:12:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-09 15:08:56 +08:00
|
|
|
|
function initPlugins(configPlugin) {
|
2017-11-27 20:11:28 +08:00
|
|
|
|
configPlugin = require('../config.json').plugins;
|
2017-10-05 09:12:44 +08:00
|
|
|
|
var systemConfigPlugin = require('./common/config.js').exts;
|
|
|
|
|
|
2018-07-09 15:08:56 +08:00
|
|
|
|
var scripts = [];
|
|
|
|
|
if (configPlugin && Array.isArray(configPlugin) && configPlugin.length) {
|
2017-10-05 09:12:44 +08:00
|
|
|
|
configPlugin = commonLib.initPlugins(configPlugin, 'plugin');
|
2018-07-09 15:08:56 +08:00
|
|
|
|
configPlugin.forEach(plugin => {
|
|
|
|
|
if (plugin.client && plugin.enable) {
|
|
|
|
|
scripts.push(createScript(plugin, 'node_modules'));
|
2017-10-05 09:12:44 +08:00
|
|
|
|
}
|
2018-07-09 15:08:56 +08:00
|
|
|
|
});
|
2017-09-05 10:24:13 +08:00
|
|
|
|
}
|
2018-07-09 15:08:56 +08:00
|
|
|
|
|
2017-10-05 09:12:44 +08:00
|
|
|
|
systemConfigPlugin = commonLib.initPlugins(systemConfigPlugin, 'ext');
|
2018-07-09 15:08:56 +08:00
|
|
|
|
systemConfigPlugin.forEach(plugin => {
|
|
|
|
|
if (plugin.client && plugin.enable) {
|
|
|
|
|
scripts.push(createScript(plugin, 'exts'));
|
2017-10-05 09:12:44 +08:00
|
|
|
|
}
|
2018-07-09 15:08:56 +08:00
|
|
|
|
});
|
2017-10-05 09:12:44 +08:00
|
|
|
|
|
2018-07-09 15:08:56 +08:00
|
|
|
|
scripts = 'module.exports = {' + scripts.join(',') + '}';
|
2017-10-05 09:12:44 +08:00
|
|
|
|
fs.writeFileSync('client/plugin-module.js', scripts);
|
2017-09-05 10:24:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
initPlugins();
|
2017-08-10 21:20:57 +08:00
|
|
|
|
|
2017-07-05 19:31:50 +08:00
|
|
|
|
module.exports = {
|
2018-07-09 15:08:56 +08:00
|
|
|
|
plugins: [
|
|
|
|
|
{
|
|
|
|
|
name: 'antd',
|
|
|
|
|
options: {
|
|
|
|
|
modifyQuery: function(defaultQuery) {
|
|
|
|
|
// 可查看和编辑 defaultQuery
|
|
|
|
|
defaultQuery.plugins = [];
|
|
|
|
|
defaultQuery.plugins.push([
|
|
|
|
|
'transform-runtime',
|
|
|
|
|
{
|
|
|
|
|
polyfill: false,
|
|
|
|
|
regenerator: true
|
|
|
|
|
}
|
|
|
|
|
]);
|
|
|
|
|
defaultQuery.plugins.push('transform-decorators-legacy');
|
|
|
|
|
defaultQuery.plugins.push(['import', { libraryName: 'antd' }]);
|
|
|
|
|
return defaultQuery;
|
|
|
|
|
},
|
|
|
|
|
exclude: /node_modules\/(?!_?(yapi-plugin|json-schema-editor-visual))/
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
devtool: 'cheap-source-map',
|
|
|
|
|
config: function(ykit) {
|
2017-07-25 14:18:57 +08:00
|
|
|
|
return {
|
2018-07-09 15:08:56 +08:00
|
|
|
|
exports: ['./index.js'],
|
2017-09-13 17:35:56 +08:00
|
|
|
|
commonsChunk: {
|
|
|
|
|
vendors: {
|
2018-01-11 10:45:44 +08:00
|
|
|
|
lib: [
|
2018-02-02 11:07:29 +08:00
|
|
|
|
// 'anujs',
|
2018-07-09 15:08:56 +08:00
|
|
|
|
'react',
|
2018-02-02 11:07:29 +08:00
|
|
|
|
'react-dom',
|
2018-01-11 10:45:44 +08:00
|
|
|
|
'redux',
|
2017-09-13 17:35:56 +08:00
|
|
|
|
'redux-thunk',
|
|
|
|
|
'redux-promise',
|
|
|
|
|
'react-router',
|
|
|
|
|
'react-router-dom',
|
2018-07-09 15:08:56 +08:00
|
|
|
|
'prop-types',
|
2017-09-21 09:17:41 +08:00
|
|
|
|
'react-dnd-html5-backend',
|
|
|
|
|
'react-dnd',
|
|
|
|
|
'reactabular-table',
|
|
|
|
|
'reactabular-dnd',
|
2017-12-08 18:07:06 +08:00
|
|
|
|
'table-resolver',
|
|
|
|
|
'recharts'
|
2017-09-13 17:35:56 +08:00
|
|
|
|
],
|
2018-07-09 15:08:56 +08:00
|
|
|
|
lib2: ['brace', 'mockjs', 'json5', 'url', 'axios', 'moment'],
|
|
|
|
|
lib3: [
|
2018-03-05 14:24:17 +08:00
|
|
|
|
// 'codemirror',
|
|
|
|
|
// "highlight.js",
|
|
|
|
|
// "jquery",
|
|
|
|
|
// "markdown-it",
|
|
|
|
|
// "plantuml-encoder",
|
|
|
|
|
// "squire-rte",
|
|
|
|
|
// "to-mark",
|
|
|
|
|
// "tui-chart",
|
|
|
|
|
// "tui-code-snippet",
|
|
|
|
|
// "tui-color-picker",
|
2018-03-05 13:26:26 +08:00
|
|
|
|
'tui-editor'
|
2017-09-13 17:35:56 +08:00
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
2018-07-09 15:08:56 +08:00
|
|
|
|
modifyWebpackConfig: function(baseConfig) {
|
2017-08-08 14:25:33 +08:00
|
|
|
|
var ENV_PARAMS = {};
|
|
|
|
|
switch (this.env) {
|
|
|
|
|
case 'local':
|
2017-08-23 20:41:47 +08:00
|
|
|
|
ENV_PARAMS = 'dev';
|
2017-08-08 14:25:33 +08:00
|
|
|
|
break;
|
|
|
|
|
case 'dev':
|
2017-08-23 20:41:47 +08:00
|
|
|
|
ENV_PARAMS = 'dev';
|
2017-08-08 14:25:33 +08:00
|
|
|
|
break;
|
|
|
|
|
case 'prd':
|
2017-08-23 20:41:47 +08:00
|
|
|
|
ENV_PARAMS = 'production';
|
2017-08-08 14:25:33 +08:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2017-08-22 10:43:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-09 15:08:56 +08:00
|
|
|
|
baseConfig.plugins.push(
|
|
|
|
|
new this.webpack.DefinePlugin({
|
|
|
|
|
'process.env.NODE_ENV': JSON.stringify(ENV_PARAMS),
|
|
|
|
|
'process.env.version': JSON.stringify(package.version),
|
|
|
|
|
'process.env.versionNotify': yapi.WEBCONFIG.versionNotify
|
|
|
|
|
})
|
|
|
|
|
);
|
2017-08-10 21:20:57 +08:00
|
|
|
|
|
|
|
|
|
//初始化配置
|
2018-07-09 15:08:56 +08:00
|
|
|
|
baseConfig.devtool = 'cheap-module-eval-source-map';
|
2017-08-31 18:04:45 +08:00
|
|
|
|
baseConfig.context = path.resolve(__dirname, './client');
|
2017-09-15 12:01:17 +08:00
|
|
|
|
baseConfig.resolve.alias.client = '/client';
|
2017-08-31 18:04:45 +08:00
|
|
|
|
baseConfig.resolve.alias.common = '/common';
|
2018-02-28 16:09:24 +08:00
|
|
|
|
|
2017-09-15 12:01:17 +08:00
|
|
|
|
baseConfig.resolve.alias.exts = '/exts';
|
2018-01-11 10:45:44 +08:00
|
|
|
|
|
2018-02-14 11:13:51 +08:00
|
|
|
|
// baseConfig.resolve.alias.react = 'anujs';
|
|
|
|
|
// baseConfig.resolve.alias['react-dom'] = 'anujs';
|
2018-01-11 10:45:44 +08:00
|
|
|
|
|
2017-07-25 15:07:55 +08:00
|
|
|
|
baseConfig.output.prd.path = 'static/prd';
|
|
|
|
|
baseConfig.output.prd.publicPath = '';
|
2018-07-09 15:08:56 +08:00
|
|
|
|
baseConfig.output.prd.filename = '[name]@[chunkhash][ext]';
|
|
|
|
|
|
2018-07-18 15:30:24 +08:00
|
|
|
|
baseConfig.module.noParse = /node_modules\/jsondiffpatch\/public\/build\/.*js/;
|
|
|
|
|
baseConfig.module.loaders.push({
|
|
|
|
|
test: /\.less$/,
|
|
|
|
|
loader: ykit.ExtractTextPlugin.extract(
|
|
|
|
|
require.resolve('style-loader'),
|
|
|
|
|
require.resolve('css-loader') +
|
|
|
|
|
'?sourceMap!' +
|
|
|
|
|
require.resolve('less-loader') +
|
|
|
|
|
'?sourceMap'
|
|
|
|
|
)
|
|
|
|
|
});
|
2017-07-25 15:07:55 +08:00
|
|
|
|
baseConfig.module.loaders.push({
|
|
|
|
|
test: /\.(sass|scss)$/,
|
|
|
|
|
loader: ykit.ExtractTextPlugin.extract(
|
2018-07-09 15:08:56 +08:00
|
|
|
|
require.resolve('css-loader') +
|
|
|
|
|
'?sourceMap!' +
|
|
|
|
|
require.resolve('sass-loader') +
|
|
|
|
|
'?sourceMap'
|
2017-07-25 15:07:55 +08:00
|
|
|
|
)
|
2018-07-09 15:08:56 +08:00
|
|
|
|
});
|
2018-02-22 12:26:08 +08:00
|
|
|
|
|
2017-07-25 15:07:55 +08:00
|
|
|
|
baseConfig.module.preLoaders.push({
|
2017-07-25 17:06:49 +08:00
|
|
|
|
test: /\.(js|jsx)$/,
|
2017-12-12 20:52:00 +08:00
|
|
|
|
exclude: /node_modules|google-diff.js/,
|
2018-07-09 15:08:56 +08:00
|
|
|
|
loader: 'eslint-loader'
|
2017-07-25 15:07:55 +08:00
|
|
|
|
});
|
2017-07-25 14:18:57 +08:00
|
|
|
|
|
2018-03-05 11:04:29 +08:00
|
|
|
|
baseConfig.module.preLoaders.push({
|
|
|
|
|
test: /\.json$/,
|
|
|
|
|
loader: 'json-loader'
|
2018-07-09 15:08:56 +08:00
|
|
|
|
});
|
2018-03-05 11:04:29 +08:00
|
|
|
|
|
2017-07-25 17:06:49 +08:00
|
|
|
|
if (this.env == 'prd') {
|
2018-07-18 19:26:37 +08:00
|
|
|
|
baseConfig.plugins.push(
|
|
|
|
|
new this.webpack.optimize.UglifyJsPlugin({
|
|
|
|
|
compress: {
|
|
|
|
|
warnings: false
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
);
|
2018-07-09 15:08:56 +08:00
|
|
|
|
baseConfig.plugins.push(assetsPluginInstance);
|
|
|
|
|
baseConfig.plugins.push(compressPlugin);
|
2017-07-25 17:06:49 +08:00
|
|
|
|
}
|
2017-07-25 15:07:55 +08:00
|
|
|
|
return baseConfig;
|
|
|
|
|
}
|
2018-07-09 15:08:56 +08:00
|
|
|
|
};
|
2017-07-06 14:25:52 +08:00
|
|
|
|
},
|
|
|
|
|
server: {
|
|
|
|
|
// true/false,默认 false,效果相当于 ykit server --hot
|
2017-09-06 10:18:13 +08:00
|
|
|
|
hot: true,
|
2017-07-06 14:25:52 +08:00
|
|
|
|
// true/false,默认 false,开启后可在当前打开的页面提示打包错误
|
2017-09-06 10:18:13 +08:00
|
|
|
|
overlay: false
|
2017-07-06 14:25:52 +08:00
|
|
|
|
},
|
|
|
|
|
hooks: {},
|
|
|
|
|
commands: []
|
2017-09-08 11:18:30 +08:00
|
|
|
|
};
|