Skip to content

add package lock #398

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Nov 20, 2024
13 changes: 9 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm run lint
- run: npm test
- uses: pnpm/action-setup@v4
with:
version: 9
- run: pnpm install
- run: pnpm install
working-directory: examples
- run: pnpm run build
- run: pnpm run lint
- run: pnpm run test
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ npm-debug.log
.DS_Store
dist
*.tgz
package-lock.json
package-lock.json
53 changes: 0 additions & 53 deletions examples/package-lock.json

This file was deleted.

309 changes: 309 additions & 0 deletions examples/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"homepage": "https://github.com/cachecontrol/json-rules-engine",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/node": "^22.9.0",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"lodash": "4.17.21",
Expand Down
Loading
Loading