forked from formkit/auto-animate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.build.mjs
228 lines (212 loc) · 5.98 KB
/
.build.mjs
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
import { dirname, resolve } from "path"
import { fileURLToPath } from "url"
import fs from "fs/promises"
import { execa } from "execa"
import { execSync } from "child_process"
import chalk from "chalk"
import prompts from "prompts"
import brotliSize from "brotli-size"
import prettyBytes from "pretty-bytes"
const info = (m) => console.log(chalk.blue(m))
const error = (m) => console.log(chalk.red(m))
const success = (m) => console.log(chalk.green(m))
const details = (m) => console.log(chalk.pink(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 fs.readFile(resolve(rootDir, "dist/react/index.mjs"), "utf8")
raw = raw.replace("from '../index'", "from '../index.mjs'")
await fs.writeFile(resolve(rootDir, "dist/react/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 fs.readFile(resolve(rootDir, "dist/vue/index.mjs"), "utf8")
raw = raw.replace("from '../index'", "from '../index.mjs'")
await fs.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 fs.readFile(
resolve(rootDir, "dist/angular/index.mjs"),
"utf8"
)
raw = raw.replace(
"import autoAnimate from '../index';",
"import autoAnimate from '../index.mjs';"
)
await fs.writeFile(resolve(rootDir, "dist/angular/index.mjs"), raw)
}
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/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", ["rm", "-rf", `${rootDir}/dist/src`])
await execa("shx", ["rm", `${rootDir}/dist/index.js`])
}
async function addPackageJSON() {
info("Writing package.json")
const raw = await fs.readFile(resolve(rootDir, "package.json"), "utf8")
const packageJSON = JSON.parse(raw)
delete packageJSON.private
delete packageJSON.devDependencies
delete packageJSON.scripts
await fs.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 (!/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 fs.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 fs.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 fs.readFile(resolve(rootDir, "dist/index.min.js"), "utf8")
console.log("Brotli size: " + prettyBytes(brotliSize.sync(raw)))
}
if (isPublishing) await prepareForPublishing()
await clean()
await baseBuild()
await baseBuildMin()
await reactBuild()
await vueBuild()
await angularBuild()
await declarationsBuild()
await bundleDeclarations()
await addPackageJSON()
await addAssets()
await outputSize()
isPublishing ? await publish() : success("Build complete")