-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrolldown.config.js
More file actions
149 lines (139 loc) · 3.55 KB
/
Copy pathrolldown.config.js
File metadata and controls
149 lines (139 loc) · 3.55 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
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
import { transformAsync } from '@dom-expressions/compiler';
import { readFileSync } from 'node:fs';
import { defineConfig } from 'rolldown';
import { dts } from 'rolldown-plugin-dts';
const extensions = ['.js', '.ts', '.json', '.tsx', '.jsx'];
const builtIns = [
'For',
'Show',
'Switch',
'Match',
'Loading',
'Reveal',
'Portal',
'Repeat',
'Dynamic',
'Errored',
];
function solid(generate) {
return {
name: 'solid',
async transform(code, id) {
const filename = id.replace(/\?.*$/, '');
if (/[/\\]node_modules[/\\]/.test(filename) || !/\.[mc]?[jt]sx$/i.test(filename)) {
return null;
}
const result = await transformAsync(code, {
filename,
moduleName: '@solidjs/web',
generate,
sourceMap: true,
contextToCustomElements: true,
wrapConditionals: true,
builtIns,
});
return { code: result.code, map: result.map };
},
};
}
function css(server = false) {
return {
name: 'devtools-css',
transform(code, id) {
if (!id.endsWith('.css')) return null;
if (server) return { code: '', map: null, moduleType: 'js' };
return {
code: `const style = document.createElement('style');\nstyle.textContent = ${JSON.stringify(code)};\ndocument.head.append(style);`,
map: null,
moduleType: 'js',
};
},
};
}
function assetUrl() {
return {
name: 'devtools-asset-url',
async resolveId(source, importer) {
if (!source.endsWith('?url')) return null;
const resolved = await this.resolve(source.slice(0, -4), importer, {
skipSelf: true,
});
return resolved ? `${resolved.id}?url` : null;
},
load(id) {
if (!id.endsWith('?url')) return null;
const referenceId = this.emitFile({
type: 'asset',
name: 'onig.wasm',
source: readFileSync(id.slice(0, -4)),
});
return `export default import.meta.ROLLDOWN_FILE_URL_${referenceId};`;
},
};
}
function packageVersion() {
const version = JSON.parse(readFileSync(new URL('./package.json', import.meta.url))).version;
return {
name: 'devtools-version',
load(id) {
if (id.endsWith('/src/version.ts')) return `export default ${JSON.stringify(version)};`;
},
};
}
function external(id) {
return (
id === 'solid-js' ||
id.startsWith('solid-js/') ||
id === '@solidjs/web' ||
id.startsWith('@solidjs/web/')
);
}
function config({ input, entryFileNames, chunkFileNames, generate, server = false }) {
return {
input,
platform: server ? 'node' : 'browser',
resolve: { extensions },
output: {
format: 'esm',
dir: 'dist',
entryFileNames,
chunkFileNames,
assetFileNames: 'assets/[name]-[hash][extname]',
cleanDir: !server,
sourcemap: true,
},
external,
plugins: [css(server), assetUrl(), packageVersion(), solid(generate)],
};
}
export default defineConfig([
config({
input: 'src/index.tsx',
entryFileNames: 'index.js',
chunkFileNames: 'chunks/[name]-[hash].js',
generate: 'dom',
}),
config({
input: 'src/server.tsx',
entryFileNames: 'server.js',
chunkFileNames: 'server-chunks/[name]-[hash].js',
generate: 'ssr',
server: true,
}),
config({
input: 'src/noop.ts',
entryFileNames: 'noop.js',
chunkFileNames: 'noop-chunks/[name]-[hash].js',
generate: 'ssr',
server: true,
}),
{
input: 'src/index.tsx',
output: {
format: 'esm',
dir: 'dist/types',
},
external,
plugins: [dts({ emitDtsOnly: true })],
},
]);