This repository was archived by the owner on Oct 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
103 lines (97 loc) · 2.02 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
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
import typescript from 'rollup-plugin-typescript2'
import json from 'rollup-plugin-json'
import { terser } from 'rollup-plugin-terser'
import analyze from 'rollup-plugin-analyzer'
import createBanner from 'create-banner'
import moment from 'moment'
import chalk from 'chalk'
import pkg from './package.json'
const name = 'Engineslist'
const banner = createBanner({
data: {
name,
date: moment().format('DD.MM.YYYY'),
},
})
const plugins = [
typescript({
useTsconfigDeclarationDir: true,
tsconfig: 'tsconfig.json',
tsconfigOverride: {
compilerOptions: {
declarationDir: 'dist',
target: 'es5',
module: 'es6',
},
},
}),
json({
preferConst: true,
namedExports: true,
compact: true,
}),
analyze({
showExports: true,
writeTo: null, // (str) => {}
}),
]
const isProd = process.env.NODE_ENV === 'production'
const isDev = process.env.NODE_ENV === 'developent'
console.log(
'Environment:',
isDev ? chalk.green('development') : chalk.red('production'),
)
if (isProd) {
plugins.push(
terser({
toplevel: true,
output: {
comments: (_, { type, value }) => {
if (type == 'comment2') {
return new RegExp('Engineslist').test(value)
}
},
},
}),
)
}
export default [
{
input: 'src/cli.ts',
external: [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
'path',
'util',
],
output: [
{
banner: '#!/usr/bin/env node', // add shebang
file: `dist/cli.js`,
format: 'cjs',
},
],
plugins,
},
{
input: 'src/index.ts',
external: [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
'path',
],
output: [
{
banner,
file: `dist/engineslist.js`,
format: 'cjs',
},
{
banner,
file: `dist/engineslist.esm.js`,
format: 'esm',
},
],
plugins,
},
]