Skip to content

Commit

Permalink
Update scripts in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
hyzyla committed Aug 31, 2024
1 parent d321601 commit aa80da1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ jobs:
- run: npm ci
- run: cat package.json
- run: npm run check:ci
- run: npm run type-check
- run: npm test
- run: npm run check:types
- run: npm run check:test
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,10 @@
"build:watch": "rollup --config rollup.config.mjs --watch",
"build:prod": "rollup --config rollup.config.mjs --environment NODE_ENV:production",
"clean": "rm -rf dist",
"check": "biome check --write",
"check:fix": "biome check --fix",
"check:fix": "biome check --write",
"check:ci": "biome ci",
"test": "vitest",
"type-check": "tsc --noEmit"
"check:test": "vitest",
"check:types": "tsc --noEmit"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit aa80da1

Please sign in to comment.