Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

Commit

Permalink
Fix npmhelper script
Browse files Browse the repository at this point in the history
  • Loading branch information
eulores committed Sep 28, 2020
1 parent 796174f commit 7f44c2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eulores/esimba",
"version": "0.2.2",
"version": "0.2.3",
"description": "Fast bundler for Imba",
"author": "eulores <[email protected]>",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions scripts/npmhelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const {buildSync} = require('esbuild')
function bundleSources() {
buildSync({
bundle:true,
entryPoints: ['../src/index.js'],
outfile:'./esimba.js',
entryPoints: ['./src/index.js'],
outfile:'./pkg/esimba.js',
platform:'node',
target:'node12',
format:'cjs',
Expand Down

0 comments on commit 7f44c2e

Please sign in to comment.