2017-05-16 10:00:56 -05:00
|
|
|
/**
|
|
|
|
* webpack configuration
|
|
|
|
*/
|
|
|
|
|
2018-02-21 14:05:19 -06:00
|
|
|
import * as fs from 'fs';
|
2018-03-14 15:26:24 -05:00
|
|
|
import * as webpack from 'webpack';
|
2019-11-24 02:09:32 -06:00
|
|
|
import * as chalk from 'chalk';
|
2018-04-27 05:12:15 -05:00
|
|
|
const { VueLoaderPlugin } = require('vue-loader');
|
2018-03-14 15:26:24 -05:00
|
|
|
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
|
2018-11-13 08:10:51 -06:00
|
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
2018-03-14 15:27:53 -05:00
|
|
|
|
2019-03-05 18:26:22 -06:00
|
|
|
class WebpackOnBuildPlugin {
|
|
|
|
constructor(readonly callback: (stats: any) => void) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public apply(compiler: any) {
|
|
|
|
compiler.hooks.done.tap('WebpackOnBuildPlugin', this.callback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-23 15:47:51 -06:00
|
|
|
const isProduction = process.env.NODE_ENV == 'production';
|
2018-02-15 12:23:10 -06:00
|
|
|
|
2018-07-05 22:17:38 -05:00
|
|
|
const locales = require('./locales');
|
2018-03-14 15:26:24 -05:00
|
|
|
const meta = require('./package.json');
|
2017-05-16 10:00:56 -05:00
|
|
|
|
2018-11-11 13:09:02 -06:00
|
|
|
const postcss = {
|
|
|
|
loader: 'postcss-loader',
|
|
|
|
options: {
|
|
|
|
plugins: [
|
|
|
|
require('cssnano')({
|
|
|
|
preset: 'default'
|
|
|
|
})
|
|
|
|
]
|
|
|
|
},
|
2018-05-16 19:28:31 -05:00
|
|
|
};
|
2017-05-16 10:00:56 -05:00
|
|
|
|
2018-11-11 14:03:12 -06:00
|
|
|
module.exports = {
|
2018-11-11 13:09:02 -06:00
|
|
|
entry: {
|
2020-01-29 13:37:25 -06:00
|
|
|
app: './src/client/init.ts',
|
|
|
|
sw: './src/client/sw.js'
|
2018-11-11 13:09:02 -06:00
|
|
|
},
|
2018-05-16 19:28:31 -05:00
|
|
|
module: {
|
|
|
|
rules: [{
|
|
|
|
test: /\.vue$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: [{
|
|
|
|
loader: 'vue-loader',
|
|
|
|
options: {
|
|
|
|
cssSourceMap: false,
|
|
|
|
compilerOptions: {
|
|
|
|
preserveWhitespace: false
|
2018-02-18 00:27:06 -06:00
|
|
|
}
|
2018-05-16 19:28:31 -05:00
|
|
|
}
|
2018-09-27 10:48:17 -05:00
|
|
|
}, {
|
|
|
|
loader: 'vue-svg-inline-loader'
|
2018-05-16 19:28:31 -05:00
|
|
|
}]
|
|
|
|
}, {
|
2020-01-29 13:37:25 -06:00
|
|
|
test: /\.scss?$/,
|
2018-05-16 19:28:31 -05:00
|
|
|
exclude: /node_modules/,
|
|
|
|
oneOf: [{
|
|
|
|
resourceQuery: /module/,
|
2018-03-01 15:26:31 -06:00
|
|
|
use: [{
|
2018-05-16 19:28:31 -05:00
|
|
|
loader: 'vue-style-loader'
|
2018-03-01 15:26:31 -06:00
|
|
|
}, {
|
2018-03-02 22:47:55 -06:00
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
2018-11-11 13:09:02 -06:00
|
|
|
modules: true
|
2018-03-02 22:47:55 -06:00
|
|
|
}
|
2018-11-11 13:09:02 -06:00
|
|
|
}, postcss, {
|
2020-01-29 13:37:25 -06:00
|
|
|
loader: 'sass-loader',
|
|
|
|
options: {
|
|
|
|
implementation: require('sass'),
|
|
|
|
sassOptions: {
|
|
|
|
fiber: require('fibers')
|
|
|
|
}
|
|
|
|
}
|
2018-03-01 15:26:31 -06:00
|
|
|
}]
|
2018-02-20 14:55:19 -06:00
|
|
|
}, {
|
2018-03-02 22:47:55 -06:00
|
|
|
use: [{
|
2018-04-27 05:12:15 -05:00
|
|
|
loader: 'vue-style-loader'
|
2018-03-02 22:47:55 -06:00
|
|
|
}, {
|
2018-11-11 13:09:02 -06:00
|
|
|
loader: 'css-loader'
|
|
|
|
}, postcss, {
|
2020-01-29 13:37:25 -06:00
|
|
|
loader: 'sass-loader',
|
|
|
|
options: {
|
|
|
|
implementation: require('sass'),
|
|
|
|
sassOptions: {
|
|
|
|
fiber: require('fibers')
|
|
|
|
}
|
|
|
|
}
|
2018-03-02 22:47:55 -06:00
|
|
|
}]
|
2018-05-16 19:28:31 -05:00
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [{
|
|
|
|
loader: 'vue-style-loader'
|
|
|
|
}, {
|
2018-11-11 13:09:02 -06:00
|
|
|
loader: 'css-loader'
|
|
|
|
}, postcss]
|
2018-05-16 19:28:31 -05:00
|
|
|
}, {
|
2019-05-04 19:27:55 -05:00
|
|
|
test: /\.(eot|woff|woff2|svg|ttf)([?]?.*)$/,
|
2018-05-16 19:28:31 -05:00
|
|
|
loader: 'url-loader'
|
2018-10-02 02:04:31 -05:00
|
|
|
}, {
|
|
|
|
test: /\.json5$/,
|
|
|
|
loader: 'json5-loader'
|
2018-05-16 19:28:31 -05:00
|
|
|
}, {
|
|
|
|
test: /\.ts$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: [{
|
|
|
|
loader: 'ts-loader',
|
|
|
|
options: {
|
|
|
|
happyPackMode: true,
|
2020-01-29 13:37:25 -06:00
|
|
|
transpileOnly: true,
|
|
|
|
configFile: __dirname + '/src/client/tsconfig.json',
|
2018-05-16 19:28:31 -05:00
|
|
|
appendTsSuffixTo: [/\.vue$/]
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
}]
|
|
|
|
},
|
2018-11-11 13:09:02 -06:00
|
|
|
plugins: [
|
|
|
|
new ProgressBarPlugin({
|
2020-01-29 13:37:25 -06:00
|
|
|
format: chalk` {cyan.bold Yes we can} {bold [}:bar{bold ]} {green.bold :percent} {gray :elapseds}`,
|
2018-11-11 13:09:02 -06:00
|
|
|
clear: false
|
|
|
|
}),
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
_VERSION_: JSON.stringify(meta.version),
|
2019-03-06 08:28:50 -06:00
|
|
|
_LANGS_: JSON.stringify(Object.entries(locales).map(([k, v]: [string, any]) => [k, v && v.meta && v.meta.lang])),
|
2018-11-11 13:09:02 -06:00
|
|
|
_ENV_: JSON.stringify(process.env.NODE_ENV)
|
|
|
|
}),
|
2020-01-29 13:37:25 -06:00
|
|
|
new VueLoaderPlugin(),
|
2018-11-11 13:09:02 -06:00
|
|
|
new WebpackOnBuildPlugin((stats: any) => {
|
2019-11-01 08:34:26 -05:00
|
|
|
fs.writeFileSync('./built/meta.json', JSON.stringify({ version: meta.version }), 'utf-8');
|
2018-11-11 13:09:02 -06:00
|
|
|
}),
|
|
|
|
],
|
|
|
|
output: {
|
|
|
|
path: __dirname + '/built/client/assets',
|
2019-02-18 03:50:45 -06:00
|
|
|
filename: `[name].${meta.version}.js`,
|
2020-01-29 13:37:25 -06:00
|
|
|
chunkFilename: '[hash:5].[id].js',
|
2018-11-11 13:09:02 -06:00
|
|
|
publicPath: `/assets/`
|
|
|
|
},
|
2018-05-16 19:28:31 -05:00
|
|
|
resolve: {
|
|
|
|
extensions: [
|
|
|
|
'.js', '.ts', '.json'
|
|
|
|
],
|
|
|
|
alias: {
|
|
|
|
'const.styl': __dirname + '/src/client/const.styl'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
resolveLoader: {
|
2018-11-08 13:02:12 -06:00
|
|
|
modules: ['node_modules']
|
2018-05-16 19:28:31 -05:00
|
|
|
},
|
2020-01-29 13:37:25 -06:00
|
|
|
externals: {
|
|
|
|
moment: 'moment'
|
|
|
|
},
|
2018-11-13 08:10:51 -06:00
|
|
|
optimization: {
|
|
|
|
minimizer: [new TerserPlugin()]
|
|
|
|
},
|
2018-05-16 19:28:31 -05:00
|
|
|
cache: true,
|
|
|
|
devtool: false, //'source-map',
|
|
|
|
mode: isProduction ? 'production' : 'development'
|
2018-11-11 14:03:12 -06:00
|
|
|
};
|