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