Skip to content

Commit dbb534a

Browse files
author
Devlin Junker
committed
add ignore to package.json for check-peer-dependencies
1 parent 71b5736 commit dbb534a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
- name: Install Dependencies
3030
run: yarn install --pure-lockfile
3131
- name: Check Peer Dependencies
32-
run: npx check-peer-dependencies --runOnlyOnRootDependencies
32+
run: npx check-peer-dependencies
3333
- name: Run yarn ${{ matrix.yarncmd }}
3434
run: yarn ${{ matrix.yarncmd }}

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"compile": "npm run clean && ngc",
88
"build": "ng-packagr -p ng-package.json",
99
"release": "release --deps @uirouter/core @uirouter/rx",
10-
"check-peer-dependencies": "check-peer-dependencies --runOnlyOnRootDependencies",
10+
"check-peer-dependencies": "check-peer-dependencies",
1111
"test": "jest --rootDir test",
1212
"test:watch": "jest --rootDir test --watchAll",
1313
"test:debug": "node --inspect-brk node_modules/.bin/jest --rootDir test --runInBand",
@@ -83,6 +83,9 @@
8383
"./setupJest.ts"
8484
]
8585
},
86+
"checkPeerDependencies": {
87+
"ignore": ["ajv"]
88+
},
8689
"husky": {
8790
"hooks": {
8891
"pre-commit": "pretty-quick --staged"

0 commit comments

Comments
 (0)