-
Notifications
You must be signed in to change notification settings - Fork 8
/
rollup.config.js
167 lines (147 loc) · 4.56 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
import path from 'path'
import ts from 'rollup-plugin-typescript2'
import replace from '@rollup/plugin-replace'
import json from '@rollup/plugin-json'
import nodeResolve from '@rollup/plugin-node-resolve'
const name = 'tiny-sass-compiler';
const resolve = p => path.resolve(__dirname, p)
const pkg = require(resolve(`package.json`))
const masterVersion = pkg.version
const packageOptions = pkg.buildOptions || {}
export default packageConfigs
const outputConfigs = {
cjs: {
file: resolve(`dist/${name}.cjs.js`),
format: `cjs`
},
'esm-bundler': {
file: resolve(`dist/${name}.esm-bundler.js`),
format: `es`
},
global: {
file: resolve(`dist/${name}.global.js`),
format: `iife`
},
// browser distribution
'esm-browser': {
file: resolve(`dist/${name}.esm-browser.js`),
format: `es`
},
// 'cjs-browser': {
// file: resolve(`dist/${name}.cjs-browser.js`),
// format: `cjs`
// }
}
const packageFormats = Object.keys(outputConfigs);
const packageConfigs = []
if (process.env.NODE_ENV === 'production') {
packageFormats.forEach(format => {
packageConfigs.push(createProductionConfig(format))
packageConfigs.push(createMinifiedConfig(format))
})
}
function createConfig(format, output, plugins = []) {
if (!output) {
console.log(require('chalk').yellow(`invalid format: "${format}"`))
process.exit(1)
}
const isBrowserESMBuild = /browser/.test(format)
const isGlobalBuild = /global/.test(format)
const isBrowserBuild = isBrowserESMBuild | isGlobalBuild
output.sourcemap = false
output.externalLiveBindings = false
if(isGlobalBuild){
output.name = 'tinySassCompiler'
}
const shouldEmitDeclarations = process.env.TYPES != null
// const shouldEmitDeclarations =false
const tsPlugin = ts({
useTsconfigDeclarationDir: true,
check: process.env.NODE_ENV === 'production',
tsconfig: resolve('tsconfig.json'),
/**
* caution:
*
* clean set to true to avoid cache not track dependency which is not 100 % right
* in circumstance when change enum order, another dependent file keep the old order if not modified
*/
// clean: true,
cacheRoot: resolve('node_modules/.rts2_cache'),
tsconfigOverride: {
compilerOptions: {
sourceMap: output.sourcemap,
declaration: shouldEmitDeclarations,
// declarationMap: shouldEmitDeclarations,
module: 'ESNext' // when build for production, do not compile module, leave it to rollup
},
exclude: ['**/__tests__', 'test-dts'],
include: ['src']
}
})
const nodePlugins = [
nodeResolve({
preferBuiltins: true
}),
require('@rollup/plugin-commonjs')({
sourceMap: false
})
]
const external = isBrowserBuild ? ['fs', 'path'] : ['fs', 'path', 'util']; // node build externalize system package
const entryFile = isBrowserBuild ? resolve('src/index.ts') : resolve('cli.ts')
return {
input: entryFile,
external,
plugins: [
json({
namedExports: false
}),
tsPlugin,
createReplacePlugin(isBrowserBuild),
...nodePlugins,
...plugins
],
output,
onwarn: (msg, warn) => {
if (!/Circular/.test(msg)) {
warn(msg)
}
},
treeshake: {
moduleSideEffects: false
}
}
}
function createReplacePlugin(isBrowserBuild) {
const replacements = {
__COMMIT__: `"${process.env.COMMIT}"`,
__VERSION__: `"${masterVersion}"`,
__BROWSER__: isBrowserBuild
}
return replace(replacements)
}
function createProductionConfig(format) {
return createConfig(format, {
file: outputConfigs[format].file.replace(/\.js$/, '.prod.js'),
format: outputConfigs[format].format
})
}
function createMinifiedConfig(format) {
const {
terser
} = require('rollup-plugin-terser')
return createConfig(
format, {
file: outputConfigs[format].file.replace(/\.js$/, '.prod.js'),
format: outputConfigs[format].format
},
[
terser({
module: /^esm/.test(format),
compress: {
ecma: 2015,
pure_getters: true
}
})
]
)
}