-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.mjs
68 lines (67 loc) · 2.02 KB
/
rollup.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
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import typescript from "@rollup/plugin-typescript";
import dts from "rollup-plugin-dts";
import replace from "@rollup/plugin-replace";
import terser from "@rollup/plugin-terser";
import postcss from "rollup-plugin-postcss";
import packageJson from "./package.json" assert { type: "json" };
export default [
// The default configuration is meant to be used as a LIBRARY from node.
// It bundles just our files and the three.js examples because those are not properly
// packaged for node by three.js
// If you want a stand alone build then use the smbDisplay.js output below
{
input: "src/index.ts",
output: [
{
file: packageJson.main,
format: "cjs",
sourcemap: true,
},
{
file: packageJson.module,
format: "esm",
sourcemap: true,
},
],
plugins: [
commonjs(),
resolve({
// resolve and bundle the three examples
modulePaths: ['node_modules/three/examples/jsm/']
}),
typescript(),
postcss(),
],
external: ['three', 'react', 'react-dom'] // do not bundle these
},
// The full stand alone bundle output. Minified.
// With three.js and production react build.
// No cjs, we don't expect this to run in node.
{
input: 'src/index.ts',
output: [
{
file: packageJson.exports['./smbDisplay'].import,
format: 'esm',
sourcemap: true,
},
],
plugins: [
// to produce a production react build.
replace({ 'process.env.NODE_ENV': JSON.stringify('production'), preventAssignment:true}),
commonjs(),
resolve(), // nothing is external everything is resolve() - ed by this one
typescript({inlineSources: true}),
postcss(),
terser(), // minify the bundle
],
},
{
input: "dist/esm/build/types/index.d.ts",
output: [{ file: "dist/index.d.ts", format: "esm" }],
plugins: [dts()],
external: [/\.css$/u],
},
];