forked from sveltia/sveltia-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
123 lines (116 loc) · 3.3 KB
/
vite.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
111
112
113
114
115
116
117
118
119
120
121
122
123
import { svelte } from '@sveltejs/vite-plugin-svelte';
import { exec } from 'child_process';
import { existsSync } from 'fs';
import { cp, mkdir, readFile, writeFile } from 'fs/promises';
import path from 'path';
import { sveltePreprocess } from 'svelte-preprocess';
import { defineConfig } from 'vite';
/**
* Copy essential package files while modifying the `package.json` content.
* @returns {import('vite').Plugin} Vite plugin.
*/
const copyPackageFiles = () => ({
name: 'copy-package-files',
buildStart: {
async: true,
sequential: false,
// eslint-disable-next-line jsdoc/require-jsdoc
handler: async () => {
const packageJson = JSON.parse(await readFile('package.json'));
// Remove unnecessary properties as we only publish compiled bundles
delete packageJson.dependencies;
delete packageJson.scripts;
// Add properties for distribution; paths are relative to `package`
Object.assign(packageJson, {
devDependencies: {
// Keep only React type declarations used in the generated `d.ts` files
'@types/react': packageJson.devDependencies['@types/react'],
},
files: ['dist', 'types', 'main.d.ts'],
main: './dist/sveltia-cms.mjs',
module: './dist/sveltia-cms.mjs',
exports: {
'.': {
types: './main.d.ts',
default: './dist/sveltia-cms.mjs',
},
},
typesVersions: {
'>4.0': {
index: ['./main.d.ts'],
},
},
});
if (!existsSync('package')) {
await mkdir('package');
}
await Promise.all([
writeFile('package/package.json', JSON.stringify(packageJson, null, 2).concat('\n')),
cp('LICENSE.txt', 'package/LICENSE.txt'),
cp('README.md', 'package/README.md'),
]);
},
},
});
/**
* Generate TypeScript type declaration files from JSDoc comments.
* @returns {import('vite').Plugin} Vite plugin.
*/
const generateTypes = () => ({
name: 'generate-types',
buildStart: {
async: false,
sequential: false,
// eslint-disable-next-line jsdoc/require-jsdoc
handler: () => {
// Produce `main.d.ts` and `types/public.d.ts`
exec('tsc src/lib/main.js --allowJs --declaration --emitDeclarationOnly --outDir package');
},
},
});
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
$lib: path.resolve('./src/lib/'),
},
extensions: ['.js', '.svelte'],
},
build: {
target: 'es2022',
reportCompressedSize: false,
chunkSizeWarningLimit: 5000,
sourcemap: true,
rollupOptions: {
// Output JavaScript only
input: 'src/lib/main.js',
output: [
{
entryFileNames: 'sveltia-cms.js',
format: 'iife',
},
{
entryFileNames: 'sveltia-cms.mjs',
format: 'es',
},
],
// Keep exports in the ES module
// https://stackoverflow.com/q/71500190
preserveEntrySignatures: 'strict',
},
outDir: 'package/dist',
},
// https://esbuild.github.io/api/#legal-comments
esbuild: { legalComments: 'eof' },
plugins: [
svelte({
emitCss: false,
preprocess: sveltePreprocess(),
compilerOptions: {
runes: true,
},
}),
copyPackageFiles(),
generateTypes(),
],
});