-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.js
More file actions
72 lines (67 loc) · 1.96 KB
/
rollup.config.js
File metadata and controls
72 lines (67 loc) · 1.96 KB
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
import resolve from "@rollup/plugin-node-resolve";
import terser from "@rollup/plugin-terser";
import typescript from "@rollup/plugin-typescript";
import replace from "@rollup/plugin-replace";
import { exec } from "child_process";
import { homedir } from "os";
import { promisify } from "util";
const options = {
filename: "food-prefs.js",
build: process.env.BUILD || "development",
};
async function getOutput() {
if (options.build === "production") {
return `./dist/${options.filename}`;
}
const platform = process.platform;
const pluginPath = `OpenRCT2/plugin/${options.filename}`;
if (platform === "win32") // Windows
{
const { stdout } = await promisify(exec)("powershell -command \"[Environment]::GetFolderPath('MyDocuments')\"");
return `${stdout.trim()}/${pluginPath}`;
} else if (platform === "darwin") // MacOS
{
return `${homedir()}/Library/Application Support/${pluginPath}`;
} else // Linux
{
const configFolder = process.env.XDG_CONFIG_HOME || `${homedir()}/.config`;
return `${configFolder}/${pluginPath}`;
}
}
/**
* @type {import("rollup").RollupOptions}
*/
const config = {
input: "./src/plugin.ts",
output: {
file: await getOutput(),
format: "iife",
compact: true,
},
treeshake: "smallest",
plugins: [
resolve(),
typescript(),
replace({
preventAssignment: true,
_BUILD_ENVIRON_: options.build,
}),
terser({
compress: {
passes: 5,
toplevel: true,
unsafe: true,
},
format: {
comments: false,
quote_style: 1,
wrap_iife: true,
beautify: options.build !== "production",
},
mangle: {
keep_fnames: options.build !== "production",
},
}),
],
};
export default config;