Skip to content

Commit

Permalink
fix: test がない場合に失敗しないようにする
Browse files Browse the repository at this point in the history
  • Loading branch information
a01sa01to committed Feb 29, 2024
1 parent 7aebd27 commit 65c3176
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/eslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest"
"test": "jest --passWithNoTests"
},
"peerDependencies": {
"eslint": "^8.56.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/postcss/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest"
"test": "jest --passWithNoTests"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/prettier/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest"
"test": "jest --passWithNoTests"
},
"peerDependencies": {
"prettier": "^3.2.5"
Expand Down
2 changes: 1 addition & 1 deletion packages/textlint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc"
"build": "tsc --passWithNoTests"
},
"peerDependencies": {
"textlint": "^14.0.3"
Expand Down

0 comments on commit 65c3176

Please sign in to comment.