Skip to content

Commit

Permalink
Add haikubot
Browse files Browse the repository at this point in the history
  • Loading branch information
bhelx committed Oct 24, 2024
1 parent ed840df commit 6199863
Show file tree
Hide file tree
Showing 13 changed files with 1,194 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/haiku/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
dist
.git

Empty file added examples/haiku/.prettierrc
Empty file.
12 changes: 12 additions & 0 deletions examples/haiku/esbuild.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const esbuild = require('esbuild');

esbuild
.build({
entryPoints: ['src/index.ts'],
outdir: 'dist',
bundle: true,
sourcemap: true,
minify: false, // might want to use true for production build
format: 'cjs', // needs to be CJS for now
target: ['es2020'], // don't go over es2020 because quickjs doesn't support it
})
Loading

0 comments on commit 6199863

Please sign in to comment.