-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
77 lines (71 loc) · 1.89 KB
/
rollup.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
const nodeResolve = require("@rollup/plugin-node-resolve").nodeResolve;
const commonjs = require("@rollup/plugin-commonjs").default;
const replace = require("@rollup/plugin-replace");
const esbuild = require("rollup-plugin-esbuild").default;
const dts = require("rollup-plugin-dts").default;
const filesize = require("rollup-plugin-filesize");
const packageJson = require("./package.json");
/** Create banner */
const createBanner = (version) => {
return `/**!
* ukorvl/react-on-screen v${version}
*
* @copyright (c) ukorvl <[email protected]>.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/`;
};
/** Get config to generate js */
const getConfig = ({ outputFile, format, isStandalone = false }) => ({
input: "lib/index.ts",
output: {
file: outputFile,
format,
sourcemap: true,
globals: isStandalone ? { react: "React" } : undefined,
name: isStandalone ? "ReactOnScreen" : undefined,
banner: createBanner(packageJson.version),
},
plugins: [
nodeResolve(),
commonjs(),
esbuild({
minify: true,
}),
filesize(),
].concat(
isStandalone
? replace({
preventAssignment: true,
values: { "process.env.NODE_ENV": JSON.stringify("production") },
})
: [],
),
external: ["react", "react-dom"].concat(isStandalone ? [] : ["hoist-non-react-statics"]),
});
/** Generate typings config */
const dtsConfig = {
input: "lib/index.ts",
output: [{ file: packageJson.types, format: "es" }],
plugins: [dts()],
};
const configs = [
getConfig({
outputFile: packageJson.main,
format: "cjs",
}),
getConfig({
outputFile: packageJson.module,
format: "esm",
}),
getConfig({
outputFile: packageJson.unpkg,
format: "iife",
isStandalone: true,
}),
dtsConfig,
];
module.exports = configs;