forked from chrismaltby/gb-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.plugins.js
35 lines (30 loc) · 1.03 KB
/
webpack.plugins.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const webpack = require("webpack");
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
const BundleAnalyzerPlugin =
require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
const { GitRevisionPlugin } = require("git-revision-webpack-plugin");
const pkg = require("./package.json");
const gitRevisionPlugin = new GitRevisionPlugin({
commithashCommand: "rev-list --max-count=1 --no-merges --abbrev-commit HEAD",
});
const docsUrl = pkg.version.includes("beta")
? "https://develop.gbstudio.dev/docs/"
: "https://www.gbstudio.dev/docs/";
const plugins = [
new webpack.DefinePlugin({
GIT_VERSION: JSON.stringify(gitRevisionPlugin.version()),
COMMITHASH: JSON.stringify(gitRevisionPlugin.commithash()),
VERSION: JSON.stringify(pkg.version),
DOCS_URL: JSON.stringify(docsUrl),
}),
new ForkTsCheckerWebpackPlugin({
async: false,
typescript: {
memoryLimit: 4096,
},
}),
];
if (process.env.ANALYZE_BUNDLE) {
plugins.push(new BundleAnalyzerPlugin());
}
module.exports = plugins;