diff --git a/js/package.json b/js/package.json index f818deb1..46a81dcb 100644 --- a/js/package.json +++ b/js/package.json @@ -36,13 +36,13 @@ "scripts": { "build": "npx tsc && yarn clean && yarn build:browser && yarn build:cjs && yarn build:esm && yarn build:types", "build:browser": "npx esbuild src/browser.ts --bundle --minify --outfile=dist/schematic.browser.js --platform=browser", - "build:cjs": "npx esbuild src/index.ts --bundle --format=cjs --outfile=dist/schematic.cjs.js --platform=neutral", - "build:esm": "npx esbuild src/index.ts --bundle --format=esm --outfile=dist/schematic.esm.js --platform=neutral", + "build:cjs": "npx esbuild src/index.ts --bundle --format=cjs --outfile=dist/schematic.cjs.js", + "build:esm": "npx esbuild src/index.ts --bundle --format=esm --outfile=dist/schematic.esm.js", "build:types": "npx tsc && npx api-extractor run", "clean": "rm -rf dist", "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --fix", "test": "jest --config jest.config.js" }, "types": "dist/schematic.d.ts", - "version": "0.1.1" + "version": "0.1.2" }