Skip to content

Commit

Permalink
build: fix build command
Browse files Browse the repository at this point in the history
  • Loading branch information
fi3ework committed Feb 6, 2022
1 parent 4285d54 commit a7dc6e0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/vite-plugin-checker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
"watch:node": "tsc -p tsconfig.build.json --watch",
"watch:runtime": "esbuild src/@runtime/main.ts --outfile=./lib/@runtime/main.js --bundle --format=esm --watch",
"dev": "run-p watch:node watch:runtime",
"build": "tsc -p tsconfig.build.json && esbuild src/@runtime/main.ts --outfile=./lib/@runtime/main.js --bundle --format=esm",
"build:test": "tsc -p tsconfig.test.json",
"build:runtime": "esbuild src/@runtime/main.ts --outfile=./lib/@runtime/main.js --bundle --format=esm",
"build": "tsc -p tsconfig.build.json && pnpm run build:runtime",
"build:test": "tsc -p tsconfig.test.json && pnpm run build:runtime",
"prepublishOnly": "rimraf lib && npm run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path . --lerna-package vite-plugin-checker",
"release": "zx ../../scripts/release.mjs"
Expand Down

0 comments on commit a7dc6e0

Please sign in to comment.