Skip to content

Commit

Permalink
[#43] 🔧 Add script for watcing test
Browse files Browse the repository at this point in the history
  • Loading branch information
yongholeeme committed Dec 20, 2024
1 parent e87b932 commit f3289b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"markdownlint": "markdownlint '**/*.md' '#.changeset' '#**/CHANGELOG.md'",
"markdownlint:fix": "markdownlint --fix '**/*.md' '#.changeset' '#**/CHANGELOG.md'",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"release": "changeset publish"
},
"lint-staged": {
Expand Down
1 change: 1 addition & 0 deletions packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"main": "./lib/index.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"version": "pnpm version",
"deploy": "pnpm publish"
},
Expand Down
3 changes: 2 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"test": {"cache": false}
"test": {"cache": false},
"test:watch": {"cache": false}
}
}

0 comments on commit f3289b5

Please sign in to comment.