-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
vite.config.mjs
195 lines (173 loc) · 7.83 KB
/
vite.config.mjs
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
import { svelte } from "@sveltejs/vite-plugin-svelte";
import resolve from "@rollup/plugin-node-resolve"; // This resolves NPM modules from node_modules.
import preprocess from "svelte-preprocess";
import {
postcssConfig,
terserConfig,
typhonjsRuntime
} from '@typhonjs-fvtt/runtime/rollup';
import { viteStaticCopy } from 'vite-plugin-static-copy';
import cleanPlugin from 'vite-plugin-clean';
import { normalizePath } from 'vite';
import path from 'path';
import { run } from 'vite-plugin-run'
// ATTENTION!
// Please modify the below variables: s_PACKAGE_ID and s_SVELTE_HASH_ID appropriately.
// For convenience, you just need to modify the package ID below as it is used to fill in default proxy settings for
// the dev server.
const s_MODULE_ID = "tidy5e-sheet";
const s_PACKAGE_ID = "modules/"+s_MODULE_ID;
const s_ENTRY_JAVASCRIPT = "module.js";
// A short additional string to add to Svelte CSS hash values to make yours unique. This reduces the amount of
// duplicated framework CSS overlap between many TRL packages enabled on Foundry VTT at the same time. 'ese' is chosen
// by shortening 'essential-svelte-esm'.
const s_SVELTE_HASH_ID = "ese";
const s_COMPRESS = false; // Set to true to compress the module bundle.
const s_SOURCEMAPS = true; // Generate sourcemaps for the bundle (recommended).
// EXPERIMENTAL: Set to true to enable linking against the TyphonJS Runtime Library module.
// You must add a Foundry module dependency on the `typhonjs` Foundry package or manually install it in Foundry from:
// https://github.com/typhonjs-fvtt-lib/typhonjs/releases/latest/download/module.json
const s_TYPHONJS_MODULE_LIB = false;
// Used in bundling particularly during development. If you npm-link packages to your project add them here.
const s_RESOLVE_CONFIG = {
browser: true,
dedupe: ["svelte"],
};
// ATTENTION!
// You must change `base` and the `proxy` strings replacing `/modules/${s_MODULE_ID}/` with your
// module or system ID.
export default () => {
/** @type {import('vite').UserConfig} */
return {
root: "src/", // Source location / esbuild root.
base: `/${s_PACKAGE_ID}/`, // Base module path that 30001 / served dev directory.
publicDir: false, // No public resources to copy.
cacheDir: "../.vite-cache", // Relative from root directory.
resolve: { conditions: ["import", "browser"] },
esbuild: {
target: ['es2022', 'chrome100'],
keepNames: true // Note: doesn't seem to work.
},
css: {
// Creates a standard configuration for PostCSS with autoprefixer & postcss-preset-env.
postcss: postcssConfig({
compress: s_COMPRESS,
sourceMap: s_SOURCEMAPS
}),
},
// About server options:
// - Set to `open` to boolean `false` to not open a browser window automatically. This is useful if you set up a
// debugger instance in your IDE and launch it with the URL: 'http://localhost:30001/game'.
//
// - The top proxy entry redirects requests under the module path for `style.css` and following standard static
// directories: `assets`, `lang`, and `packs` and will pull those resources from the main Foundry / 30000 server.
// This is necessary to reference the dev resources as the root is `/src` and there is no public / static
// resources served with this particular Vite configuration. Modify the proxy rule as necessary for your
// static resources / project.
server: {
port: 29999,
open: "/game",
// open: false,
proxy: {
// Serves static files from main Foundry server.
[`^(/${s_PACKAGE_ID}/(images|fonts|assets|lang|languages|packs|styles|templates|style.css))`]:
"http://127.0.0.1:30000",
// All other paths besides package ID path are served from main Foundry server.
[`^(?!/${s_PACKAGE_ID}/)`]: "http://127.0.0.1:30000",
// Enable socket.io from main Foundry server.
"/socket.io": { target: "ws://127.0.0.1:30000", ws: true },
},
},
build: {
outDir: normalizePath( path.resolve(__dirname, `./dist/${s_MODULE_ID}`)), // __dirname,
emptyOutDir: false,
sourcemap: s_SOURCEMAPS,
brotliSize: true,
minify: s_COMPRESS ? "terser" : false,
target: ['es2022', 'chrome100'],
terserOptions: s_COMPRESS ? { ...terserConfig(), ecma: 2022 } : void 0,
lib: {
entry: "./" + s_ENTRY_JAVASCRIPT, // "./module.js"
formats: ["es"],
fileName: "module",
},
},
// Necessary when using the dev server for top-level await usage inside of TRL.
optimizeDeps: {
esbuildOptions: {
target: 'es2022'
}
},
plugins: [
run([
{
name: 'run sass',
run: ['sass', `src/styles:dist/${s_MODULE_ID}/styles`]
},
]),
viteStaticCopy({
targets: [
{
src: normalizePath(path.resolve(__dirname, './src/assets')) + '/[!.]*', // 1️
dest: normalizePath(path.resolve(__dirname, `./dist/${s_MODULE_ID}/assets`)), // 2️
},
{
src: normalizePath(path.resolve(__dirname, './src/images')) + '/[!.]*', // 1️
dest: normalizePath(path.resolve(__dirname, `./dist/${s_MODULE_ID}/images`)), // 2️
},
{
src: normalizePath(path.resolve(__dirname, './src/icons')) + '/[!.]*', // 1️
dest: normalizePath(path.resolve(__dirname, `./dist/${s_MODULE_ID}/icons`)), // 2️
},
{
src: normalizePath(path.resolve(__dirname, './src/templates')) + '/[!.]*', // 1️
dest: normalizePath(path.resolve(__dirname, `./dist/${s_MODULE_ID}/templates`)), // 2️
},
{
src: normalizePath(path.resolve(__dirname, './src/lang')) + '/[!.]*',
dest: normalizePath(path.resolve(__dirname, `./dist/${s_MODULE_ID}/lang`)),
},
{
src: normalizePath(path.resolve(__dirname, './src/languages')) + '/[!.]*',
dest: normalizePath(path.resolve(__dirname, `./dist/${s_MODULE_ID}/languages`)),
},
{
src: normalizePath(path.resolve(__dirname, './src/styles')) + '/**/*.css',
dest: normalizePath(path.resolve(__dirname, `./dist/${s_MODULE_ID}/styles`)),
},
{
src: normalizePath(path.resolve(__dirname, './src/packs')) + '/[!.]*',
dest: normalizePath(path.resolve(__dirname, `./dist/${s_MODULE_ID}/packs`)),
},
{
src: normalizePath(path.resolve(__dirname, './src/module.json')),
dest: normalizePath(path.resolve(__dirname, `./dist/${s_MODULE_ID}/`)),
},
],
}),
svelte({
compilerOptions: {
// Provides a custom hash adding the string defined in `s_SVELTE_HASH_ID` to scoped Svelte styles;
// This is reasonable to do as the framework styles in TRL compiled across `n` different packages will
// be the same. Slightly modifying the hash ensures that your package has uniquely scoped styles for all
// TRL components and makes it easier to review styles in the browser debugger.
cssHash: ({ hash, css }) => `svelte-${s_SVELTE_HASH_ID}-${hash(css)}`,
},
preprocess: preprocess(),
onwarn: (warning, handler) => {
// Suppress `a11y-missing-attribute` for missing href in <a> links.
// Foundry doesn't follow accessibility rules.
if (warning.message.includes(`<a> element should have an href attribute`)) {
return;
}
// Let Rollup handle all other warnings normally.
handler(warning);
},
}),
resolve(s_RESOLVE_CONFIG), // Necessary when bundling npm-linked packages.
// When s_TYPHONJS_MODULE_LIB is true transpile against the Foundry module version of TRL.
s_TYPHONJS_MODULE_LIB && typhonjsRuntime(),
cleanPlugin()
]
};
};