Skip to content

Commit

Permalink
ref(profiling) output mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasBa committed Aug 7, 2024
1 parent 17c4122 commit 8d801eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ console.log('Running build using esbuild version', esbuild.version);
esbuild.buildSync({
platform: 'node',
entryPoints: ['./index.ts'],
outdir: './dist',
outfile: './dist/index.mjs',
target: 'esnext',
format: 'esm',
bundle: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"build": "node build.mjs",
"build:shimmed": "node build.shimmed.mjs",
"test": "npm run build && node dist/index.js",
"test:shimmed": "npm run build:shimmed && node dist/index.js",
"test:shimmed": "npm run build:shimmed && node dist/index.mjs",
"clean": "npx rimraf node_modules dist",
"test:build": "npm run typecheck && npm run build",
"test:build:shimmed": "npm run typecheck && npm run build:shimmed",
Expand Down

0 comments on commit 8d801eb

Please sign in to comment.