Skip to content

Commit

Permalink
add ignore to package.json for check-peer-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Devlin Junker committed Sep 15, 2022
1 parent 71b5736 commit dbb534a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
- name: Install Dependencies
run: yarn install --pure-lockfile
- name: Check Peer Dependencies
run: npx check-peer-dependencies --runOnlyOnRootDependencies
run: npx check-peer-dependencies
- name: Run yarn ${{ matrix.yarncmd }}
run: yarn ${{ matrix.yarncmd }}
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"compile": "npm run clean && ngc",
"build": "ng-packagr -p ng-package.json",
"release": "release --deps @uirouter/core @uirouter/rx",
"check-peer-dependencies": "check-peer-dependencies --runOnlyOnRootDependencies",
"check-peer-dependencies": "check-peer-dependencies",
"test": "jest --rootDir test",
"test:watch": "jest --rootDir test --watchAll",
"test:debug": "node --inspect-brk node_modules/.bin/jest --rootDir test --runInBand",
Expand Down Expand Up @@ -83,6 +83,9 @@
"./setupJest.ts"
]
},
"checkPeerDependencies": {
"ignore": ["ajv"]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
Expand Down

0 comments on commit dbb534a

Please sign in to comment.