0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-24 11:07:29 +01:00

chore: remove rimraf and use bun shell (#3146)

This commit is contained in:
Shotaro Nakamura 2024-07-18 18:34:33 +09:00 committed by GitHub
parent 801e1b9027
commit f23a416f75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -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": {
".": {
@ -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",