2017-05-17 00:00:56 +09:00
|
|
|
/**
|
|
|
|
* webpack configuration
|
|
|
|
*/
|
|
|
|
|
2018-02-22 05:05:19 +09:00
|
|
|
import * as fs from 'fs';
|
2018-03-15 05:26:24 +09:00
|
|
|
import * as webpack from 'webpack';
|
2018-04-27 19:12:15 +09:00
|
|
|
const { VueLoaderPlugin } = require('vue-loader');
|
2018-03-15 05:27:53 +09:00
|
|
|
|
2019-03-06 09:26:22 +09:00
|
|
|
class WebpackOnBuildPlugin {
|
|
|
|
constructor(readonly callback: (stats: any) => void) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public apply(compiler: any) {
|
|
|
|
compiler.hooks.done.tap('WebpackOnBuildPlugin', this.callback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-04 08:46:54 +09:00
|
|
|
const isProduction = process.env.NODE_ENV === 'production';
|
2018-02-16 03:23:10 +09:00
|
|
|
|
2018-07-06 12:17:38 +09:00
|
|
|
const locales = require('./locales');
|
2018-03-15 05:26:24 +09:00
|
|
|
const meta = require('./package.json');
|
2017-05-17 00:00:56 +09:00
|
|
|
|
2018-11-12 04:09:02 +09:00
|
|
|
const postcss = {
|
|
|
|
loader: 'postcss-loader',
|
|
|
|
options: {
|
2020-10-17 20:12:00 +09:00
|
|
|
postcssOptions: {
|
|
|
|
plugins: [
|
|
|
|
require('cssnano')({
|
|
|
|
preset: 'default'
|
|
|
|
})
|
|
|
|
]
|
|
|
|
}
|
2018-11-12 04:09:02 +09:00
|
|
|
},
|
2018-05-17 09:28:31 +09:00
|
|
|
};
|
2017-05-17 00:00:56 +09:00
|
|
|
|
2020-12-26 15:13:25 +09:00
|
|
|
module.exports = {
|
2018-11-12 04:09:02 +09:00
|
|
|
entry: {
|
2020-01-30 04:37:25 +09:00
|
|
|
app: './src/client/init.ts',
|
2020-12-26 14:11:08 +09:00
|
|
|
sw: './src/client/sw/sw.ts'
|
2018-11-12 04:09:02 +09:00
|
|
|
},
|
2018-05-17 09:28:31 +09:00
|
|
|
module: {
|
|
|
|
rules: [{
|
|
|
|
test: /\.vue$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: [{
|
|
|
|
loader: 'vue-loader',
|
|
|
|
options: {
|
|
|
|
cssSourceMap: false,
|
|
|
|
compilerOptions: {
|
|
|
|
preserveWhitespace: false
|
2018-02-18 15:27:06 +09:00
|
|
|
}
|
2018-05-17 09:28:31 +09:00
|
|
|
}
|
|
|
|
}]
|
|
|
|
}, {
|
2020-01-30 04:37:25 +09:00
|
|
|
test: /\.scss?$/,
|
2018-05-17 09:28:31 +09:00
|
|
|
exclude: /node_modules/,
|
|
|
|
oneOf: [{
|
|
|
|
resourceQuery: /module/,
|
2018-03-02 06:26:31 +09:00
|
|
|
use: [{
|
2018-05-17 09:28:31 +09:00
|
|
|
loader: 'vue-style-loader'
|
2018-03-02 06:26:31 +09:00
|
|
|
}, {
|
2018-03-03 13:47:55 +09:00
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
2020-08-01 00:56:09 +09:00
|
|
|
modules: true,
|
|
|
|
esModule: false, // TODO: trueにすると壊れる。Vue3移行の折にはtrueにできるかもしれない
|
|
|
|
url: false,
|
2018-03-03 13:47:55 +09:00
|
|
|
}
|
2018-11-12 04:09:02 +09:00
|
|
|
}, postcss, {
|
2020-01-30 04:37:25 +09:00
|
|
|
loader: 'sass-loader',
|
|
|
|
options: {
|
|
|
|
implementation: require('sass'),
|
|
|
|
sassOptions: {
|
2021-04-21 03:24:53 +09:00
|
|
|
fiber: false
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
|
|
|
}
|
2018-03-02 06:26:31 +09:00
|
|
|
}]
|
2018-02-21 05:55:19 +09:00
|
|
|
}, {
|
2018-03-03 13:47:55 +09:00
|
|
|
use: [{
|
2018-04-27 19:12:15 +09:00
|
|
|
loader: 'vue-style-loader'
|
2018-03-03 13:47:55 +09:00
|
|
|
}, {
|
2020-08-01 00:56:09 +09:00
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
|
|
|
url: false,
|
|
|
|
esModule: false, // TODO: trueにすると壊れる。Vue3移行の折にはtrueにできるかもしれない
|
|
|
|
}
|
2018-11-12 04:09:02 +09:00
|
|
|
}, postcss, {
|
2020-01-30 04:37:25 +09:00
|
|
|
loader: 'sass-loader',
|
|
|
|
options: {
|
|
|
|
implementation: require('sass'),
|
|
|
|
sassOptions: {
|
2021-04-21 03:24:53 +09:00
|
|
|
fiber: false
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
|
|
|
}
|
2018-03-03 13:47:55 +09:00
|
|
|
}]
|
2018-05-17 09:28:31 +09:00
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [{
|
|
|
|
loader: 'vue-style-loader'
|
|
|
|
}, {
|
2020-08-01 23:30:51 +09:00
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
|
|
|
esModule: false, // TODO: trueにすると壊れる。Vue3移行の折にはtrueにできるかもしれない
|
|
|
|
}
|
2018-11-12 04:09:02 +09:00
|
|
|
}, postcss]
|
2021-04-12 23:13:58 +09:00
|
|
|
}, {
|
|
|
|
test: /\.svg$/,
|
|
|
|
use: [
|
|
|
|
'vue-loader',
|
|
|
|
'vue-svg-loader',
|
|
|
|
],
|
2018-05-17 09:28:31 +09:00
|
|
|
}, {
|
2019-05-05 09:27:55 +09:00
|
|
|
test: /\.(eot|woff|woff2|svg|ttf)([?]?.*)$/,
|
2021-03-24 11:32:23 +09:00
|
|
|
type: 'asset/resource'
|
2018-10-02 16:04:31 +09:00
|
|
|
}, {
|
|
|
|
test: /\.json5$/,
|
2020-04-26 10:35:47 +09:00
|
|
|
loader: 'json5-loader',
|
|
|
|
options: {
|
|
|
|
esModule: false,
|
|
|
|
},
|
|
|
|
type: 'javascript/auto'
|
2018-05-17 09:28:31 +09:00
|
|
|
}, {
|
|
|
|
test: /\.ts$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: [{
|
|
|
|
loader: 'ts-loader',
|
|
|
|
options: {
|
|
|
|
happyPackMode: true,
|
2020-01-30 04:37:25 +09:00
|
|
|
transpileOnly: true,
|
|
|
|
configFile: __dirname + '/src/client/tsconfig.json',
|
2018-05-17 09:28:31 +09:00
|
|
|
appendTsSuffixTo: [/\.vue$/]
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
}]
|
|
|
|
},
|
2018-11-12 04:09:02 +09:00
|
|
|
plugins: [
|
2020-04-22 19:36:28 +09:00
|
|
|
new webpack.ProgressPlugin({}),
|
2018-11-12 04:09:02 +09:00
|
|
|
new webpack.DefinePlugin({
|
|
|
|
_VERSION_: JSON.stringify(meta.version),
|
2020-02-12 07:12:58 +09:00
|
|
|
_LANGS_: JSON.stringify(Object.entries(locales).map(([k, v]: [string, any]) => [k, v._lang_])),
|
2020-10-17 20:12:00 +09:00
|
|
|
_ENV_: JSON.stringify(process.env.NODE_ENV),
|
|
|
|
_DEV_: process.env.NODE_ENV !== 'production',
|
|
|
|
_PERF_PREFIX_: JSON.stringify('Misskey:'),
|
|
|
|
_DATA_TRANSFER_DRIVE_FILE_: JSON.stringify('mk_drive_file'),
|
|
|
|
_DATA_TRANSFER_DRIVE_FOLDER_: JSON.stringify('mk_drive_folder'),
|
|
|
|
_DATA_TRANSFER_DECK_COLUMN_: JSON.stringify('mk_deck_column'),
|
|
|
|
__VUE_OPTIONS_API__: true,
|
|
|
|
__VUE_PROD_DEVTOOLS__: false,
|
2018-11-12 04:09:02 +09:00
|
|
|
}),
|
2020-01-30 04:37:25 +09:00
|
|
|
new VueLoaderPlugin(),
|
2018-11-12 04:09:02 +09:00
|
|
|
new WebpackOnBuildPlugin((stats: any) => {
|
2019-11-01 22:34:26 +09:00
|
|
|
fs.writeFileSync('./built/meta.json', JSON.stringify({ version: meta.version }), 'utf-8');
|
2018-11-12 04:09:02 +09:00
|
|
|
}),
|
|
|
|
],
|
|
|
|
output: {
|
2021-03-06 13:23:59 +09:00
|
|
|
path: __dirname + '/built/assets',
|
2020-12-26 15:13:25 +09:00
|
|
|
filename: `[name].${meta.version}.js`,
|
2020-12-27 10:42:47 +09:00
|
|
|
publicPath: `/assets/`,
|
|
|
|
pathinfo: false,
|
2018-11-12 04:09:02 +09:00
|
|
|
},
|
2018-05-17 09:28:31 +09:00
|
|
|
resolve: {
|
|
|
|
extensions: [
|
|
|
|
'.js', '.ts', '.json'
|
|
|
|
],
|
|
|
|
alias: {
|
2021-03-23 17:30:14 +09:00
|
|
|
'@client': __dirname + '/src/client',
|
|
|
|
'@': __dirname + '/src',
|
2018-05-17 09:28:31 +09:00
|
|
|
'const.styl': __dirname + '/src/client/const.styl'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
resolveLoader: {
|
2018-11-09 04:02:12 +09:00
|
|
|
modules: ['node_modules']
|
2018-05-17 09:28:31 +09:00
|
|
|
},
|
2020-10-17 20:12:00 +09:00
|
|
|
experiments: {
|
|
|
|
topLevelAwait: true
|
|
|
|
},
|
2018-05-17 09:28:31 +09:00
|
|
|
devtool: false, //'source-map',
|
|
|
|
mode: isProduction ? 'production' : 'development'
|
2020-12-26 15:13:25 +09:00
|
|
|
};
|