Skip to content

Commit

Permalink
chore: remove rimraf and use bun shell (#3146)
Browse files Browse the repository at this point in the history
  • Loading branch information
nakasyou authored Jul 18, 2024
1 parent 801e1b9 commit f23a416
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Binary file modified bun.lockb
Binary file not shown.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,13 @@
"format": "prettier --check --cache \"src/**/*.{js,ts,tsx}\" \"runtime_tests/**/*.{js,ts,tsx}\"",
"format:fix": "prettier --write --cache --cache-strategy metadata \"src/**/*.{js,ts,tsx}\" \"runtime_tests/**/*.{js,ts,tsx}\"",
"copy:package.cjs.json": "cp ./package.cjs.json ./dist/cjs/package.json && cp ./package.cjs.json ./dist/types/package.json ",
"build": "rimraf dist && bun ./build.ts && bun run copy:package.cjs.json",
"build": "bun run --shell bun remove-dist && bun ./build.ts && bun run copy:package.cjs.json",
"postbuild": "publint",
"watch": "rimraf dist && bun ./build.ts --watch && bun run copy:package.cjs.json",
"watch": "bun run --shell bun remove-dist && bun ./build.ts --watch && bun run copy:package.cjs.json",
"coverage": "vitest --run --coverage",
"prerelease": "bun test:deno && bun run build",
"release": "np"
"release": "np",
"remove-dist": "rm -rf dist"
},
"exports": {
".": {
Expand Down Expand Up @@ -627,7 +628,6 @@
"np": "7.7.0",
"prettier": "^2.6.2",
"publint": "^0.1.8",
"rimraf": "^3.0.2",
"supertest": "^6.3.3",
"typescript": "^5.3.3",
"vite-plugin-fastly-js-compute": "^0.4.2",
Expand Down

0 comments on commit f23a416

Please sign in to comment.