forked from pikax/vue-composable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
247 lines (227 loc) · 6.75 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
import fs from "fs";
import path from "path";
import ts from "rollup-plugin-typescript2";
import replace from "@rollup/plugin-replace";
import json from "@rollup/plugin-json";
import resolvePlugin from "@rollup/plugin-node-resolve";
import alias from "@rollup/plugin-alias";
if (!process.env.TARGET) {
throw new Error("TARGET package must be specified via --environment flag.");
}
const packagesDir = path.resolve(__dirname, "packages");
const packageDir = path.resolve(packagesDir, process.env.TARGET);
const name = path.basename(packageDir);
const resolve = (p) => path.resolve(packageDir, p);
const pkg = require(resolve(`package.json`));
const packageOptions = pkg.buildOptions || {};
const vueVersion = process.env.VUE_VERSION;
const knownExternals = fs.readdirSync(packagesDir);
// ensure TS checks only once for each build
let hasTSChecked = false;
const configs = {
"esm-bundler": {
file: resolve(`dist/v${vueVersion}/${name}.esm-bundler.js`),
format: `es`,
},
cjs: {
file: resolve(`dist/v${vueVersion}/${name}.cjs.js`),
format: `cjs`,
},
global: {
file: resolve(`dist/v${vueVersion}/${name}.global.js`),
format: `iife`,
globals: {
"@vue/composition-api": "vueCompositionApi",
"@vue/runtime-core": "Vue", // this is replaced with the Vue3 instance
axios: "axios",
vue: "Vue",
},
},
esm: {
file: resolve(`dist/v${vueVersion}/${name}.esm.js`),
format: `es`,
external: [
"vue",
"@vue/composition-api",
"axios",
"@vue/devtools-api",
"js-cookie",
],
},
};
const setup = {
global: {
external: [
"vue",
"@vue/composition-api",
"axios",
"@vue/runtime-core",
"@vue/devtools-api",
"js-cookie",
],
plugins: [
resolvePlugin({
// mainFields: [
// 'browser'
// ]
// modulesOnly: true,
// only: "@vue-composable/core",
// dedupe: ["vue", "@vue/composition-api"]
}),
],
},
};
const defaultFormats = ["esm-bundler", "cjs"];
const inlineFormats = process.env.FORMATS && process.env.FORMATS.split(",");
const packageFormats =
inlineFormats || packageOptions.formats || defaultFormats;
const packageConfigs = process.env.PROD_ONLY
? []
: packageFormats.map((format) =>
createConfig(
configs[format],
configs[format].plugins || [],
setup[format] || {}
)
);
if (process.env.NODE_ENV === "production") {
packageFormats.forEach((format) => {
if (format === "cjs" && packageOptions.prod !== false) {
packageConfigs.push(createProductionConfig(format));
}
if (format === "global" || format === "esm") {
packageConfigs.push(createMinifiedConfig(format));
}
});
}
export default packageConfigs;
function createConfig(output, plugins = [], config = {}) {
output.externalLiveBindings = false;
const isProductionBuild =
process.env.__DEV__ === "false" || /\.prod\.js$/.test(output.file);
const isGlobalBuild = /\.global(\.prod)?\.js$/.test(output.file);
const isBundlerESMBuild = /\.esm-bundler\.js$/.test(output.file);
const isRawESMBuild = /esm(\.prod)?\.js$/.test(output.file);
const isRuntimeCompileBuild = /vue\./.test(output.file);
if (isGlobalBuild) {
output.name = packageOptions.name;
}
const shouldEmitDeclarations =
process.env.TYPES != null &&
process.env.NODE_ENV === "production" &&
!hasTSChecked;
const tsPlugin = ts({
check: process.env.NODE_ENV === "production" && !hasTSChecked,
tsconfig: path.resolve(__dirname, "tsconfig.json"),
cacheRoot: path.resolve(__dirname, "node_modules/.rts2_cache"),
tsconfigOverride: {
compilerOptions: {
declaration: shouldEmitDeclarations,
declarationMap: shouldEmitDeclarations,
},
exclude: ["**/__tests__", "test-dts"],
},
});
// we only need to check TS and generate declarations once for each build.
// it also seems to run into weird issues when checking multiple times
// during a single build.
hasTSChecked = true;
return {
...config,
input: resolve(`src/index.ts`),
// Global and Browser ESM builds inlines everything so that they can be
// used alone.
external:
isGlobalBuild || isRawESMBuild
? config.external || []
: knownExternals.concat(
Object.keys(pkg.dependencies || []).concat(
Object.keys(pkg.peerDependencies || []) || []
)
),
plugins: [
...(config.plugins || []),
...[
alias({
entries: [{ find: "@vue/runtime-core", replacement: "vue" }],
}),
],
json({
namedExports: false,
}),
tsPlugin,
createReplacePlugin(
isProductionBuild,
isBundlerESMBuild,
(isGlobalBuild || isRawESMBuild) &&
!packageOptions.enableNonBrowserBranches,
isRuntimeCompileBuild
),
...plugins,
],
output,
};
}
function createReplacePlugin(
isProduction,
isBundlerESMBuild,
isBrowserBuild,
isRuntimeCompileBuild
) {
return replace({
preventAssignment: true,
values: {
__COMMIT__: `"${process.env.COMMIT}"`,
__VERSION__: `"${process.env.VERSION}"`,
__DEV__: isBundlerESMBuild
? // preserve to be handled by bundlers
`(process.env.NODE_ENV !== 'production')`
: // hard coded dev/prod builds
!isProduction,
__SSR__: isBrowserBuild
? false
: isBundlerESMBuild
? `((globalThis.import ? globalThis.import.meta.env.SSR : process.env.SSR ))`
: true,
// this is only used during tests
__TEST__: isBundlerESMBuild ? `(process.env.NODE_ENV === 'test')` : false,
// If the build is expected to run directly in the browser (global / esm builds)
__BROWSER__: isBrowserBuild,
// support compile in browser?
__RUNTIME_COMPILE__: isRuntimeCompileBuild,
// support options?
// the lean build drops options related code with buildOptions.lean: true
"process.env.NODE_ENV": isBundlerESMBuild
? `process.env.NODE_ENV`
: "'production'",
__VUE_2__: process.env.VUE_VERSION === "2",
},
});
}
function createProductionConfig(format) {
return createConfig(
{
file: resolve(`dist/v${vueVersion}/${name}.${format}.prod.js`),
format: configs[format].format,
},
configs[format].plugins || [],
setup[format] || {}
);
}
function createMinifiedConfig(format) {
const { terser } = require("rollup-plugin-terser");
return createConfig(
{
...configs[format],
file: resolve(`dist/v${vueVersion}/${name}.${format}.prod.js`),
format: configs[format].format,
},
[
...(configs[format].plugins || []),
terser({
module: /^esm/.test(format),
}),
],
setup[format] || {}
);
}