Skip to content

Commit

Permalink
chore: improve scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
wellwelwel committed Jun 11, 2024
1 parent fb6de1e commit 57646fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:checker": "prettier --check .",
"prettier:fix": "prettier --write .github/workflows/*.yml .",
"update": "pu minor && npm i && npm run lint:fix && npm audit",
"update": "pu minor && npm i && npm audit fix",
"postupdate": "npm run lint:fix",
"benchmark": "cd benchmark && npm ci && npm start"
},
"license": "MIT",
Expand Down
7 changes: 4 additions & 3 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
"typecheck": "tsc",
"lintcheck": "prettier --check . && eslint . --ext .ts,.tsx",
"lint": "prettier --write . && eslint . --fix",
"test:unit": "npx poku --parallel test/unit",
"test:unit": "poku --parallel test/unit",
"test": "npm run typecheck && npm run lintcheck && npm run test:unit && npm run clear && npm run build",
"update": "npx pu minor && npm i && npm run lint",
"deploy": "npx tsx deploy/upload.ts"
"update": "pu minor && npm i && npm audit fix",
"postupdate": "npm run lint",
"deploy": "tsx deploy/upload.ts"
},
"dependencies": {
"@docusaurus/core": "^3.4.0",
Expand Down

0 comments on commit 57646fe

Please sign in to comment.