-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrollup.config.mjs
More file actions
89 lines (83 loc) · 2.02 KB
/
rollup.config.mjs
File metadata and controls
89 lines (83 loc) · 2.02 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
// rollup.config.js
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import resolve from '@rollup/plugin-node-resolve';
import typescript from '@rollup/plugin-typescript';
import terser from '@rollup/plugin-terser';
import license from 'rollup-plugin-license'
import packageJson from './package.json' assert { type: 'json' };
import path from 'path'
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const { name, version, author } = packageJson
const { main, module, browser } = packageJson["clean-package"].replace
const isProduction = process.env.NODE_ENV === 'production'
const nameClean = name.replace(/\.js$/, '')
const settings = {
globals: {
},
sourcemap: true
}
export default {
input: './src/index.ts',
output: [
{
file: main,
name: nameClean,
...settings,
format: 'cjs',
plugins: [
isProduction && terser()
]
},
{
file: module,
...settings,
name: nameClean,
format: 'esm'
},
{
file: browser,
...settings,
name: nameClean,
format: 'umd',
plugins: [
isProduction && terser()
]
}
],
external: [ ],
// treeshake: {
// preset: "smallest",
// moduleSideEffects: false,
// unknownGlobalSideEffects: false,
// propertyReadSideEffects: false,
// tryCatchDeoptimization: false,
// },
plugins: [
json(),
typescript({
}),
resolve({
}),
// commonjs({
// include: 'node_modules/**',
// extensions: [ '.js' ],
// ignoreGlobal: false,
// sourceMap: false
// }),
license({
banner: `
@license
${name} v${version}
Copyright 2022<%= moment().format('YYYY') > 2022 ? '-' + moment().format('YYYY') : null %> ${author}
${packageJson.license} License
`,
// thirdParty: {
// output: path.join(__dirname, 'dist', 'dependencies.txt'),
// includePrivate: true, // Default is false.
// },
})
]
}