-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbuild.js
240 lines (209 loc) · 7.36 KB
/
build.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
/* eslint-disable no-console */
import { execSync } from 'node:child_process'
import fs from 'node:fs'
import path from 'node:path'
import esbuild from 'esbuild'
const copyPublicFiles = () => {
const srcDir = path.resolve('public')
const destDir = path.resolve('dist')
// Ensure the destination directory exists
if (!fs.existsSync(destDir)) {
fs.mkdirSync(destDir, { recursive: true })
}
// Read all files in the source directory
const files = fs.readdirSync(srcDir)
// Copy each file to the destination directory
files.forEach(file => {
const srcFile = path.join(srcDir, file)
const destFile = path.join(destDir, file)
fs.copyFileSync(srcFile, destFile)
console.log(`${file} copied to dist folder.`)
})
}
function gitRevision () {
try {
const ref = execSync('git rev-parse --abbrev-ref HEAD').toString().trim()
const sha = execSync('git rev-parse --short HEAD').toString().trim()
try {
// detect production build
execSync('git fetch --force --depth=1 --quiet origin production')
const latestProduction = execSync('git rev-parse remotes/origin/production').toString().trim()
if (latestProduction.startsWith(sha)) {
return `production@${sha}`
}
// detect staging build
execSync('git fetch --force --depth=1 --quiet origin staging')
const latestStaging = execSync('git rev-parse remotes/origin/staging').toString().trim()
if (latestStaging.startsWith(sha)) {
return `staging@${sha}`
}
} catch (_) { /* noop */ }
return `${ref}@${sha}`
} catch (_) {
return `no-git-dirty@${new Date().getTime().toString()}`
}
}
/**
* Inject the dist/index.js and dist/index.css into the dist/index.html file
*
* @param {esbuild.Metafile} metafile
*/
const injectAssets = (metafile) => {
const htmlFilePath = path.resolve('dist/index.html')
// Extract the output file names from the metafile
const outputs = metafile.outputs
const scriptFile = Object.keys(outputs).find(file => file.endsWith('.js') && file.includes('ipfs-sw-index'))
const cssFile = Object.keys(outputs).find(file => file.endsWith('.css') && file.includes('ipfs-sw-index'))
const scriptTag = `<script type="module" src="${path.basename(scriptFile)}"></script>`
const linkTag = `<link rel="stylesheet" href="${path.basename(cssFile)}">`
// Read the index.html file
let htmlContent = fs.readFileSync(htmlFilePath, 'utf8')
// Inject the link tag for CSS before the closing </head> tag
htmlContent = htmlContent.replace('</head>', `${linkTag}</head>`)
// Inject the script tag for JS before the closing </body> tag
htmlContent = htmlContent.replace('</body>', `${scriptTag}</body>`)
// Inject the git revision into the index
htmlContent = htmlContent.replace(/<%= GIT_VERSION %>/g, gitRevision())
// Write the modified HTML back to the index.html file
fs.writeFileSync(htmlFilePath, htmlContent)
console.log(`Injected ${path.basename(scriptFile)} and ${path.basename(cssFile)} into index.html.`)
}
/**
* Inject the ipfs-sw-first-hit.js into the ipfs-sw-first-hit.html file
*
* This was added when addressing an issue with redirects not preserving query parameters.
*
* The solution we're moving forward with is, instead of using 302 redirects with ipfs _redirects file, we are
* using 200 responses with the ipfs-sw-first-hit.html file. That file will include the ipfs-sw-first-hit.js script
* which will be injected into the index.html file, and handle the redirect logic for us.
*
* @see https://github.com/ipfs/service-worker-gateway/issues/628
*
* @param {esbuild.Metafile} metafile
*/
const injectFirstHitJs = (metafile) => {
const htmlFilePath = path.resolve('dist/ipfs-sw-first-hit.html')
const scriptFile = Object.keys(metafile.outputs).find(file => file.endsWith('.js') && file.includes('ipfs-sw-first-hit'))
const scriptTag = `<script src="/${path.basename(scriptFile)}"></script>`
let htmlContent = fs.readFileSync(htmlFilePath, 'utf8')
htmlContent = htmlContent.replace(/<%= GIT_VERSION %>/g, gitRevision())
htmlContent = htmlContent.replace('</body>', `${scriptTag}</body>`)
fs.writeFileSync(htmlFilePath, htmlContent)
}
/**
* We need the service worker to have a consistent name
*
* @type {esbuild.Plugin}
*/
const renameSwPlugin = {
name: 'rename-sw-plugin',
setup (build) {
build.onEnd(() => {
const outdir = path.resolve('dist')
const files = fs.readdirSync(outdir)
files.forEach(file => {
if (file.startsWith('ipfs-sw-sw-')) {
// everything after the dot
const extension = file.slice(file.indexOf('.'))
const oldPath = path.join(outdir, file)
const newPath = path.join(outdir, `ipfs-sw-sw${extension}`)
fs.renameSync(oldPath, newPath)
console.log(`Renamed ${file} to ipfs-sw-sw${extension}`)
if (extension === '.js') {
// Replace sourceMappingURL with new path
const contents = fs.readFileSync(newPath, 'utf8')
const newContents = contents.replace(/sourceMappingURL=.*\.js\.map/, 'sourceMappingURL=ipfs-sw-sw.js.map')
fs.writeFileSync(newPath, newContents)
}
}
})
})
}
}
/**
* @type {esbuild.Plugin}
*/
const modifyBuiltFiles = {
name: 'modify-built-files',
setup (build) {
build.onEnd(async (result) => {
copyPublicFiles()
injectAssets(result.metafile)
injectFirstHitJs(result.metafile)
})
}
}
/**
* @param {string[]} extensions - The extension of the imported files to exclude. Must match the fill ending path in the import(js) or url(css) statement.
* @returns {esbuild.Plugin}
*/
const excludeFilesPlugin = (extensions) => ({
name: 'exclude-files',
setup (build) {
build.onResolve({ filter: /.*/ }, async (args) => {
if (extensions.some(ext => args.path.endsWith(ext))) {
return { path: args.path, namespace: 'exclude', external: true }
}
})
}
})
/**
* @type {esbuild.BuildOptions}
*/
export const buildOptions = {
entryPoints: ['src/index.tsx', 'src/sw.ts', 'src/ipfs-sw-first-hit.ts'],
bundle: true,
outdir: 'dist',
loader: {
'.js': 'jsx',
'.css': 'css',
'.svg': 'file'
},
minify: true,
sourcemap: true,
metafile: true,
splitting: false,
target: ['es2020'],
format: 'esm',
entryNames: 'ipfs-sw-[name]-[hash]',
assetNames: 'ipfs-sw-[name]-[hash]',
plugins: [renameSwPlugin, modifyBuiltFiles, excludeFilesPlugin(['.eot?#iefix', '.otf', '.woff', '.woff2'])]
}
const ctx = await esbuild.context(buildOptions)
const buildAndWatch = async () => {
try {
await ctx.watch()
process.on('exit', async () => {
await ctx.dispose()
})
console.log('Watching for changes...')
await ctx.rebuild()
console.log('Initial build completed successfully.')
} catch (error) {
console.error('Build failed:', error)
process.exit(1)
}
}
const watchRequested = process.argv.includes('--watch')
const serveRequested = process.argv.includes('--serve')
if (!watchRequested && !serveRequested) {
try {
await ctx.rebuild()
console.log('Build completed successfully.')
} catch (error) {
console.error('Build failed:', error)
process.exit(1)
}
await ctx.dispose()
}
if (watchRequested) {
await buildAndWatch()
}
if (serveRequested) {
const { port } = await ctx.serve({
servedir: 'dist',
port: 8345,
host: 'localhost'
})
console.info(`Listening on http://localhost:${port}`)
}