forked from Basssiiie/OpenRCT2-RideVehicleEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
110 lines (104 loc) · 3.22 KB
/
rollup.config.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import babel from "@rollup/plugin-babel";
import resolve from "@rollup/plugin-node-resolve";
import replace from "@rollup/plugin-replace";
import getPath from "platform-folders";
import { terser } from "rollup-plugin-terser";
// Environment variables
const build = process.env.BUILD || "development";
const isDev = build === "development";
const extensions = [".js", ".ts"];
/**
* Tip: if you change the path here to your personal user folder,
* you can ignore this change in git with:
* ```
* > git update-index --skip-worktree rollup.config.js
* ```
* To accept changes on this file again, use:
* ```
* > git update-index --no-skip-worktree rollup.config.js
* ```
*/
function getOutput() {
if (!isDev) return "./dist/WetPaintPlugin.js";
const pluginPath = "OpenRCT2/plugin/WetPaintPlugin.js";
switch (process.platform) {
case "win32":
return `${getPath("documents")}/${pluginPath}`;
default:
return `${getPath("userData")}/${pluginPath}`; // for both Mac and Linux
}
}
/**
* @type {import("rollup").RollupOptions}
*/
const config = {
input: "./src/registerPlugin.ts",
output: {
file: getOutput(),
format: "iife",
},
plugins: [
resolve({
extensions,
}),
replace({
extensions,
include: "./src/environment.ts",
preventAssignment: true,
values: {
__BUILD_CONFIGURATION__: JSON.stringify(build),
},
}),
babel({
assumptions: {
constantReexports: true,
constantSuper: true,
enumerableModuleMeta: true,
ignoreFunctionLength: true,
ignoreToPrimitiveHint: true,
iterableIsArray: true,
mutableTemplateObject: true,
noClassCalls: true,
noDocumentAll: true,
noIncompleteNsImportDetection: true,
noNewArrows: true,
objectRestNoSymbols: true,
privateFieldsAsProperties: true,
pureGetters: true,
setClassMethods: true,
setComputedProperties: true,
setPublicClassFields: true,
setSpreadProperties: true,
skipForOfIteratorClosing: true,
superIsCallableConstructor: true,
},
babelHelpers: "bundled",
babelrc: false,
extensions,
presets: ["@babel/preset-env", "@babel/preset-typescript"],
}),
terser({
compress: {
passes: 5,
toplevel: true,
unsafe: true,
},
format: {
comments: false,
quote_style: 1,
wrap_iife: true,
preamble:
"// Get the latest version: https://github.com/Basssiiie/OpenRCT2-RideVehicleEditor",
beautify: isDev,
},
mangle: {
properties: {
regex: /^_/,
},
},
// Useful only for stacktraces:
keep_fnames: isDev,
}),
],
};
export default config;