-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
vite.config.ts
75 lines (69 loc) · 1.92 KB
/
vite.config.ts
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
import * as fsPromises from "fs/promises";
import copy from "rollup-plugin-copy";
import scss from "rollup-plugin-scss";
import { defineConfig, Plugin } from "vite";
// swiped in its entirety from https://bringingfire.com/blog/intro-to-foundry-module-development
function updateModuleManifestPlugin(): Plugin {
return {
name: "update-module-manifest",
async writeBundle(): Promise<void> {
const moduleVersion = process.env.MODULE_VERSION;
const githubProject = process.env.GH_PROJECT;
const githubTag = process.env.GH_TAG;
const manifestContents: string = await fsPromises.readFile(
"src/module.json",
"utf-8"
);
const manifestJson = JSON.parse(manifestContents) as Record<
string,
unknown
>;
if (moduleVersion) {
manifestJson["version"] = moduleVersion;
}
if (githubProject) {
const baseUrl = `https://github.com/${githubProject}/releases`;
manifestJson["manifest"] = `${baseUrl}/latest/download/module.json`;
if (githubTag) {
manifestJson[
"download"
] = `${baseUrl}/download/${githubTag}/module.zip`;
}
}
await fsPromises.writeFile(
"dist/module.json",
JSON.stringify(manifestJson, null, 4)
);
},
};
}
export default defineConfig({
build: {
sourcemap: true,
rollupOptions: {
input: "src/ts/module.ts",
output: {
entryFileNames: 'scripts/[name].js',
format: "es",
},
},
},
plugins: [
scss({
fileName: "styles/module.css",
sourceMap: true,
watch: ["src/styles/*.scss"],
}),
copy({
targets: [
{ src: "src/templates", dest: "dist" },
{ src: "src/languages", dest: "dist" },
{ src: "src/icons", dest: "dist" },
{ src: "README.md", dest: "dist" },
{ src: "LICENSE", dest: "dist" }
],
hook: "writeBundle",
}),
updateModuleManifestPlugin()
],
});