Skip to content

Commit

Permalink
Merge pull request #6 from WorldMaker:max/safe-bug
Browse files Browse the repository at this point in the history
Migrate to butterfloat
  • Loading branch information
WorldMaker authored Nov 22, 2023
2 parents 9c06bb1 + 58b3a3b commit b595566
Show file tree
Hide file tree
Showing 17 changed files with 13,991 additions and 7,505 deletions.
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["esbenp.prettier-vscode"]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
19 changes: 10 additions & 9 deletions _build.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
import * as esbuild from 'esbuild'

await esbuild.build({
entryPoints: ["main.ts"],
bundle: true,
outfile: "main.js",
format: "esm"
entryPoints: ['main.tsx'],
bundle: true,
outfile: 'main.js',
format: 'esm',
})

// *** Test Modules ***
await esbuild.build({
entryPoints: ['compradprogvm.ts', 'progvm.ts'],
bundle: true,
splitting: true,
outdir: '.',
format: 'esm'
entryPoints: ['*.test.ts'],
platform: 'node',
bundle: true,
splitting: true,
outdir: '.',
format: 'esm',
})
Loading

0 comments on commit b595566

Please sign in to comment.