Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
npx lint-staged
npx lint-staged
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"engineStrict": true,
"scripts": {
"test": "npm run typecheck && npm run compile && npm run unit && npm run e2e",
"test": "npm run compile && npm run typecheck && npm run unit && npm run e2e",
"unit": "VITEST_SUITE=unit vitest run",
"e2e": "VITEST_SUITE=e2e vitest run",
"smoke:rebilly": "VITEST_SUITE=smoke-rebilly vitest run",
Expand All @@ -20,7 +20,7 @@
"clear": "rm -rf packages/**/lib packages/**/node_modules packages/**/*.tsbuildinfo node_modules && git checkout package-lock.json",
"typecheck": "tsc --noEmit --skipLibCheck",
"compile": "tsc -b tsconfig.build.json && npm run respect:parser:generate && npm run build-docs:copy-assets",
"prepare": "npm run compile",
"prepare": "husky && npm run compile",
"cli": "node --import tsx packages/cli/src/index.ts",
"precli": "npm run compile",
"release": "changeset publish",
Expand Down
Loading