summaryrefslogtreecommitdiff
path: root/.ci/bundle.js
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-08-17 23:50:24 -0700
committerElizabeth Hunt <me@liz.coffee>2025-08-17 23:53:38 -0700
commit1a4fc9535a89b58e8b67c8996ade0b833116af3a (patch)
treed16f3129d7bb69f204bba8422e909354195a0042 /.ci/bundle.js
parent157dc327e8fe63541b517cfbeeaf202a3e8553a5 (diff)
downloaduptime-1a4fc9535a89b58e8b67c8996ade0b833116af3a.tar.gz
uptime-1a4fc9535a89b58e8b67c8996ade0b833116af3a.zip
Move to pengueno.
Diffstat (limited to '.ci/bundle.js')
-rw-r--r--.ci/bundle.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/.ci/bundle.js b/.ci/bundle.js
new file mode 100644
index 0000000..aabc4bd
--- /dev/null
+++ b/.ci/bundle.js
@@ -0,0 +1,12 @@
+import * as esbuild from 'esbuild';
+await esbuild
+ .build({
+ entryPoints: ['dist/ci.js'],
+ bundle: true,
+ minify: true,
+ platform: 'node',
+ outfile: 'ci.cjs',
+ logLevel: 'info',
+ sourcemap: false,
+ })
+ .catch(() => process.exit(1));