Skip to content

Commit 5fa4b65

Browse files
committed
chore: use consistent file names for scripts
1 parent ee68c52 commit 5fa4b65

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

.github/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The project uses [simple-git-hooks](https://github.com/toplenboren/simple-git-ho
8686

8787
- Type check the entire project
8888
- Automatically format changed files using Prettier
89-
- Verify commit message format (logic in `scripts/verifyCommit.js`)
89+
- Verify commit message format (logic in `scripts/verify-commit.js`)
9090

9191
## Scripts
9292

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
},
4545
"simple-git-hooks": {
4646
"pre-commit": "pnpm lint-staged && pnpm check",
47-
"commit-msg": "node scripts/verifyCommit.js"
47+
"commit-msg": "node scripts/verify-commit.js"
4848
},
4949
"lint-staged": {
5050
"*.{js,json}": [
File renamed without changes.
File renamed without changes.

vitest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default defineConfig({
2525
plugins: [codspeedPlugin()],
2626
test: {
2727
globals: true,
28-
setupFiles: 'scripts/setupVitest.ts',
28+
setupFiles: 'scripts/setup-vitest.ts',
2929
environmentMatchGlobs: [
3030
['packages/{vue,vue-compat,runtime-dom}/**', 'jsdom']
3131
],

0 commit comments

Comments
 (0)