forked from titaniumnetwork-dev/Ultraviolet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
this removes the watch command but build speeds
- Loading branch information
Showing
3 changed files
with
1,225 additions
and
2,713 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import { rimraf } from 'rimraf'; | ||
import { copyFile, mkdir, readFile } from 'node:fs/promises'; | ||
import { build } from 'esbuild'; | ||
|
||
// read version from package.json | ||
const pkg = JSON.parse(await readFile('package.json')); | ||
process.env.ULTRAVIOLET_VERSION = pkg.version; | ||
|
||
const isDevelopment = process.argv.includes('--dev'); | ||
|
||
await rimraf('dist'); | ||
await mkdir('dist'); | ||
|
||
// don't compile these files | ||
await copyFile('src/sw.js', 'dist/sw.js'); | ||
await copyFile('src/uv.config.js', 'dist/uv.config.js'); | ||
|
||
await build({ | ||
platform: 'browser', | ||
sourcemap: true, | ||
minify: !isDevelopment, | ||
entryPoints: { | ||
'uv.bundle': './src/rewrite/index.js', | ||
'uv.client': './src/client/index.js', | ||
'uv.handler': './src/uv.handler.js', | ||
'uv.sw': './src/uv.sw.js', | ||
}, | ||
define: { | ||
'process.env.ULTRAVIOLET_VERSION': JSON.stringify( | ||
process.env.ULTRAVIOLET_VERSION | ||
), | ||
}, | ||
bundle: true, | ||
outdir: 'dist/', | ||
}); |
Oops, something went wrong.