-
-
Notifications
You must be signed in to change notification settings - Fork 229
/
bundle.ts
312 lines (292 loc) · 8.22 KB
/
bundle.ts
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
import { dirname, resolve } from "path"
import { fileURLToPath } from "url"
import { readFile, writeFile } from "fs/promises"
import { execa } from "execa"
import { execSync } from "child_process"
import chalk from "chalk"
import prompts from "prompts"
import { sync } from "brotli-size"
import prettyBytes from "pretty-bytes"
import { buildModule } from "./build-nuxt"
const info = (m: string) => console.log(chalk.blue(m))
const error = (m: string) => console.log(chalk.red(m))
const success = (m: string) => console.log(chalk.green(m))
const __filename = fileURLToPath(import.meta.url)
const __dirname = dirname(__filename)
const rootDir = resolve(`${__dirname}/../`)
const isPublishing = process.argv[2] === "--publish"
async function clean() {
await execa("shx", ["rm", "-rf", `${rootDir}/dist`])
}
async function baseBuild() {
info("Rolling up primary package")
await execa("npx", ["rollup", "-c", "rollup.config.js"])
}
async function baseBuildMin() {
info("Minifying primary package")
await execa("npx", [
"rollup",
"-c",
"rollup.config.js",
"--environment",
"MIN:true",
])
}
async function reactBuild() {
info("Rolling up React package")
await execa("npx", [
"rollup",
"-c",
"rollup.config.js",
"--environment",
"FRAMEWORK:react",
])
/**
* This is a super hack — for some reason these imports need to be explicitly
* to .mjs files so...we make it so.
*/
let raw = await readFile(resolve(rootDir, "dist/react/index.mjs"), "utf8")
raw = raw.replace("from '../index'", "from '../index.mjs'")
await writeFile(resolve(rootDir, "dist/react/index.mjs"), raw)
}
async function solidBuild() {
info("Rolling up Solid package")
await execa("npx", [
"rollup",
"-c",
"rollup.config.js",
"--environment",
"FRAMEWORK:solid",
])
/**
* This is a super hack — for some reason these imports need to be explicitly
* to .mjs files so...we make it so.
*/
let raw = await readFile(resolve(rootDir, "dist/solid/index.mjs"), "utf8")
raw = raw.replace("from '../index'", "from '../index.mjs'")
await writeFile(resolve(rootDir, "dist/solid/index.mjs"), raw)
}
async function preactBuild() {
info("Rolling up Preact package")
await execa("npx", [
"rollup",
"-c",
"rollup.config.js",
"--environment",
"FRAMEWORK:preact",
])
/**
* This is a super hack — for some reason these imports need to be explicitly
* to .mjs files so...we make it so.
*/
let raw = await readFile(resolve(rootDir, "dist/preact/index.mjs"), "utf8")
raw = raw.replace("from '../index'", "from '../index.mjs'")
await writeFile(resolve(rootDir, "dist/preact/index.mjs"), raw)
}
async function vueBuild() {
info("Rolling up Vue package")
await execa("npx", [
"rollup",
"-c",
"rollup.config.js",
"--environment",
"FRAMEWORK:vue",
])
/**
* This is a super hack — for some reason these imports need to be explicitly
* to .mjs files so...we make it so.
*/
let raw = await readFile(resolve(rootDir, "dist/vue/index.mjs"), "utf8")
raw = raw.replace("from '../index'", "from '../index.mjs'")
await writeFile(resolve(rootDir, "dist/vue/index.mjs"), raw)
}
async function angularBuild() {
info("Rolling up Angular package")
await execa("npx", [
"rollup",
"-c",
"rollup.config.js",
"--environment",
"FRAMEWORK:angular",
])
/**
* This is a super hack — for some reason these imports need to be explicitly
* to .mjs files so...we make it so.
*/
let raw = await readFile(resolve(rootDir, "dist/angular/index.mjs"), "utf8")
raw = raw.replace(
"import autoAnimate from '../index';",
"import autoAnimate from '../index.mjs';"
)
await writeFile(resolve(rootDir, "dist/angular/index.mjs"), raw)
}
// async function qwikBuild() {
// info("Rolling up Qwik package")
// await execa("npx", [
// "rollup",
// "-c",
// "rollup.config.js",
// "--environment",
// "FRAMEWORK:qwik",
// ])
// /**
// * This is a super hack — for some reason these imports need to be explicitly
// * to .mjs files so...we make it so.
// */
// let raw = await readFile(resolve(rootDir, "dist/qwik/index.mjs"), "utf8")
// raw = raw.replace("from '../index'", "from '../index.mjs'")
// await writeFile(resolve(rootDir, "dist/qwik/index.mjs"), raw)
// }
async function nuxtBuild() {
info("Building nuxt module")
await buildModule({
rootDir,
srcDir: "src/nuxt",
})
}
async function declarationsBuild() {
info("Outputting declarations")
await execa("npx", [
"rollup",
"-c",
"rollup.config.js",
"--environment",
"DECLARATIONS:true",
])
}
async function bundleDeclarations() {
info("Bundling declarations")
await execa("shx", [
"mv",
`${rootDir}/dist/src/index.d.ts`,
`${rootDir}/dist/index.d.ts`,
])
await execa("shx", [
"mv",
`${rootDir}/dist/src/react/index.d.ts`,
`${rootDir}/dist/react/index.d.ts`,
])
await execa("shx", [
"mv",
`${rootDir}/dist/src/preact/index.d.ts`,
`${rootDir}/dist/preact/index.d.ts`,
])
await execa("shx", [
"mv",
`${rootDir}/dist/src/solid/index.d.ts`,
`${rootDir}/dist/solid/index.d.ts`,
])
await execa("shx", [
"mv",
`${rootDir}/dist/src/vue/index.d.ts`,
`${rootDir}/dist/vue/index.d.ts`,
])
await execa("shx", [
"mv",
`${rootDir}/dist/src/angular/index.d.ts`,
`${rootDir}/dist/angular/index.d.ts`,
])
await execa("shx", [
"mv",
`${rootDir}/dist/src/qwik/index.d.ts`,
`${rootDir}/dist/qwik/index.d.ts`,
])
await execa("shx", ["rm", "-rf", `${rootDir}/dist/src`])
await execa("shx", ["rm", `${rootDir}/dist/index.js`])
}
async function addPackageJSON() {
info("Writing package.json")
const raw = await readFile(resolve(rootDir, "package.json"), "utf8")
const packageJSON = JSON.parse(raw)
delete packageJSON.private
delete packageJSON.devDependencies
delete packageJSON.scripts
await writeFile(
resolve(rootDir, "dist/package.json"),
JSON.stringify(packageJSON, null, 2)
)
}
async function addAssets() {
info("Writing readme and license.")
await execa("shx", [
"cp",
`${rootDir}/README.md`,
`${rootDir}/dist/README.md`,
])
await execa("shx", ["cp", `${rootDir}/LICENSE`, `${rootDir}/dist/LICENSE`])
}
async function prepareForPublishing() {
info("Preparing for publication")
if (
process.env.npm_execpath &&
!/npm-cli\.js$/.test(process.env.npm_execpath)
) {
error(`⚠️ You must run this command with npm instead of yarn.`)
info("Please try again with:\n\n» npm run publish\n\n")
process.exit()
}
const isClean = !execSync(`git status --untracked-files=no --porcelain`, {
encoding: "utf-8",
})
if (!isClean) {
error("Commit your changes before publishing.")
process.exit()
}
const raw = await readFile(resolve(rootDir, "package.json"), "utf8")
const packageJSON = JSON.parse(raw)
const response = await prompts([
{
type: "confirm",
name: "value",
message: `Confirm you want to publish version ${chalk.red(
packageJSON.version
)}?`,
initial: false,
},
])
if (!response.value) {
error("Please adjust the version and try again")
process.exit()
}
}
async function publish() {
const raw = await readFile(resolve(rootDir, "package.json"), "utf8")
const packageJSON = JSON.parse(raw)
const response = await prompts([
{
type: "confirm",
name: "value",
message: `Project is build. Ready to publish?`,
initial: false,
},
])
if (response.value) {
execSync("npm publish ./dist")
execSync(`git tag ${packageJSON.version}`)
execSync(`git push origin --tags`)
}
}
async function outputSize() {
const raw = await readFile(resolve(rootDir, "dist/index.min.js"), "utf8")
console.log("Brotli size: " + prettyBytes(sync(raw)))
}
async function main() {
if (isPublishing) await prepareForPublishing()
await clean()
await baseBuild()
await baseBuildMin()
await reactBuild()
await preactBuild()
await solidBuild()
await vueBuild()
await angularBuild()
// await qwikBuild()
await declarationsBuild()
await bundleDeclarations()
await nuxtBuild()
await addPackageJSON()
await addAssets()
await outputSize()
isPublishing ? await publish() : success("Build complete")
}
main()