forked from playcanvas/splat-transform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.mjs
More file actions
96 lines (88 loc) · 2.1 KB
/
rollup.config.mjs
File metadata and controls
96 lines (88 loc) · 2.1 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
import { execSync } from 'node:child_process';
import json from '@rollup/plugin-json';
import resolve from '@rollup/plugin-node-resolve';
import replace from '@rollup/plugin-replace';
import typescript from '@rollup/plugin-typescript';
import pkg from './package.json' with { type: 'json' };
const revision = (() => {
try {
return execSync('git rev-parse --short HEAD').toString().trim();
} catch (e) {
return 'unknown';
}
})();
const versionReplace = () => replace({
preventAssignment: true,
values: {
$_CURRENT_VERSION: pkg.version,
$_CURRENT_REVISION: revision
}
});
// Library build - ESM (platform agnostic)
const esm = {
input: 'src/lib/index.ts',
output: {
dir: 'dist',
format: 'esm',
sourcemap: true,
entryFileNames: 'index.mjs'
},
external: ['playcanvas'],
plugins: [
versionReplace(),
typescript({
tsconfig: './tsconfig.json',
declaration: true,
declarationDir: 'dist'
}),
resolve(),
json()
],
cache: false
};
// Library build - CommonJS (for non-module apps)
const cjs = {
input: 'src/lib/index.ts',
output: {
dir: 'dist',
format: 'cjs',
sourcemap: true,
entryFileNames: 'index.cjs',
exports: 'named'
},
external: ['playcanvas'],
plugins: [
versionReplace(),
typescript({
tsconfig: './tsconfig.json',
declaration: false,
declarationDir: undefined
}),
resolve(),
json()
],
cache: false
};
// CLI build - Node.js specific
const cli = {
input: 'src/cli/index.ts',
output: {
dir: 'dist',
format: 'esm',
sourcemap: true,
entryFileNames: 'cli.mjs'
},
external: ['webgpu'],
plugins: [
versionReplace(),
typescript({
tsconfig: './tsconfig.json',
declaration: false,
declarationDir: undefined
}),
resolve(),
json()
],
cache: false
};
export default [esm, cjs, cli];