iceshrimp-legacy/webpack/webpack.config.ts

176 lines
3.8 KiB
TypeScript
Raw Normal View History

2017-05-16 17:00:56 +02:00
/**
* webpack configuration
*/
2018-02-21 21:05:19 +01:00
import * as fs from 'fs';
2018-03-01 22:26:31 +01:00
import jsonImporter from 'node-sass-json-importer';
2018-02-18 07:27:06 +01:00
const minify = require('html-minifier').minify;
2018-02-15 19:23:10 +01:00
import I18nReplacer from '../src/common/build/i18n';
import { pattern as faPattern, replacement as faReplacement } from '../src/common/build/fa';
const constants = require('../src/const.json');
2017-05-16 17:00:56 +02:00
import plugins from './plugins';
2017-12-16 20:02:30 +01:00
import langs from '../locales';
2018-03-02 23:32:18 +01:00
const meta = require('../package.json');
const version = meta.version;
2017-05-16 17:00:56 +02:00
2018-02-15 19:23:10 +01:00
global['faReplacement'] = faReplacement;
2018-02-18 07:27:06 +01:00
global['collapseSpacesReplacement'] = html => {
return minify(html, {
collapseWhitespace: true,
collapseInlineTagWhitespace: true,
keepClosingSlash: true
2018-02-21 21:05:19 +01:00
}).replace(/\t/g, '');
};
global['base64replacement'] = (_, key) => {
return fs.readFileSync(__dirname + '/../src/web/' + key, 'base64');
2018-02-18 07:27:06 +01:00
};
2017-12-17 06:35:30 +01:00
module.exports = Object.keys(langs).map(lang => {
2017-05-16 17:00:56 +02:00
// Chunk name
const name = lang;
// Entries
const entry = {
2017-11-13 10:05:35 +01:00
desktop: './src/web/app/desktop/script.ts',
2018-02-21 18:00:30 +01:00
mobile: './src/web/app/mobile/script.ts',
2018-02-10 02:27:05 +01:00
//ch: './src/web/app/ch/script.ts',
//stats: './src/web/app/stats/script.ts',
//status: './src/web/app/status/script.ts',
2018-02-27 16:11:28 +01:00
dev: './src/web/app/dev/script.ts',
auth: './src/web/app/auth/script.ts',
2017-11-20 21:09:45 +01:00
sw: './src/web/app/sw.js'
2017-05-16 17:00:56 +02:00
};
const output = {
path: __dirname + '/../built/web/assets',
filename: `[name].${version}.${lang}.js`
};
2018-02-15 19:23:10 +01:00
const i18nReplacer = new I18nReplacer(lang);
global['i18nReplacement'] = i18nReplacer.replacement;
2017-05-16 17:00:56 +02:00
return {
name,
entry,
2018-02-15 19:23:10 +01:00
module: {
rules: [{
test: /\.vue$/,
exclude: /node_modules/,
2018-03-03 01:49:47 +01:00
use: [{
2018-02-15 19:23:10 +01:00
loader: 'vue-loader',
options: {
cssSourceMap: false,
preserveWhitespace: false
}
2018-02-21 21:05:19 +01:00
}, {
loader: 'replace',
query: {
search: /%base64:(.+?)%/g.toString(),
replace: 'base64replacement'
}
2018-02-15 19:23:10 +01:00
}, {
loader: 'webpack-replace-loader',
options: {
search: '$theme-color',
replace: constants.themeColor,
attr: 'g'
}
}, {
loader: 'webpack-replace-loader',
query: {
search: '$theme-color-foreground',
replace: constants.themeColorForeground,
attr: 'g'
}
}, {
loader: 'replace',
query: {
search: i18nReplacer.pattern.toString(),
replace: 'i18nReplacement'
}
}, {
loader: 'replace',
query: {
search: faPattern.toString(),
replace: 'faReplacement'
}
2018-02-18 07:27:06 +01:00
}, {
loader: 'replace',
query: {
search: /^<template>([\s\S]+?)\r?\n<\/template>/.toString(),
replace: 'collapseSpacesReplacement'
}
2018-02-15 19:23:10 +01:00
}]
}, {
test: /\.styl$/,
exclude: /node_modules/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{ loader: 'stylus-loader' }
]
2018-03-01 22:26:31 +01:00
}, {
test: /\.scss$/,
exclude: /node_modules/,
use: [{
loader: 'style-loader'
}, {
loader: 'css-loader'
}, {
loader: 'sass-loader',
options: {
importer: jsonImporter,
}
}]
2018-02-20 21:55:19 +01:00
}, {
test: /\.css$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' }
]
2018-03-01 22:26:31 +01:00
}, {
test: /\.(eot|woff|woff2|svg|ttf)([\?]?.*)$/,
2018-03-03 01:49:47 +01:00
loader: 'url-loader'
2018-02-15 19:23:10 +01:00
}, {
test: /\.ts$/,
exclude: /node_modules/,
2018-02-15 19:26:59 +01:00
use: [{
loader: 'ts-loader',
options: {
2018-03-02 23:32:18 +01:00
happyPackMode: true,
2018-02-15 19:26:59 +01:00
configFile: __dirname + '/../src/web/app/tsconfig.json',
appendTsSuffixTo: [/\.vue$/]
}
}, {
loader: 'replace',
query: {
search: i18nReplacer.pattern.toString(),
replace: 'i18nReplacement'
}
}, {
loader: 'replace',
query: {
search: faPattern.toString(),
replace: 'faReplacement'
}
}]
2018-02-15 19:23:10 +01:00
}]
},
2017-11-03 09:46:42 +01:00
plugins: plugins(version, lang),
2017-11-13 10:05:35 +01:00
output,
resolve: {
extensions: [
2018-02-25 09:03:39 +01:00
'.js', '.ts', '.json'
2017-11-13 10:05:35 +01:00
]
2018-02-15 05:18:34 +01:00
},
2018-02-15 18:53:54 +01:00
resolveLoader: {
modules: ['node_modules', './webpack/loaders']
},
2018-02-16 19:01:00 +01:00
cache: true
2017-05-16 17:00:56 +02:00
};
});