Skip to content

Commit

Permalink
fix: package scripts to build types (#84)
Browse files Browse the repository at this point in the history
* fix: package scripts to run builds

* chore: bump package versions
  • Loading branch information
Gozala authored Aug 15, 2022
1 parent 0606168 commit 4d21132
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@
"scripts": {
"format": "prettier --write '**/*.{js,ts,yml,json}' --ignore-path .gitignore",
"format:check": "prettier --check '**/*.{js,ts,yml,json}' --ignore-path .gitignore",
"test": "pnpm run -r test",
"test:node": "pnpm run -r test:node",
"test:web": "pnpm run -r test:web",
"typecheck": "pnpm run -r typecheck"
"test": "pnpm -r run --if-present test",
"build": "pnpm -r run --if-present build",
"typecheck": "pnpm -r run --if-present typecheck",
"test:node": "pnpm -r run --if-present test:node",
"test:web": "pnpm -r run --if-present test:web"
},
"devDependencies": {
"mocha": "^9.2.2",
Expand Down

0 comments on commit 4d21132

Please sign in to comment.