Skip to content

Commit

Permalink
fix: update dependencies (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
santese committed Apr 4, 2024
1 parent 469121f commit 4a633fa
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 288 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v4

- name: Use Node.js 20
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20.x

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fetch-depth: 0
token: ${{ secrets.PLIBOT_PAT }}
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
},
"dependencies": {
"@expo/plist": "0.1.0",
"axios": "1.6.7",
"axios": "1.6.8",
"http-cookie-agent": "6.0.3",
"tough-cookie": "4.1.3",
"uuid": "8.3.2"
"uuid": "9.0.1"
},
"description": "",
"devDependencies": {
Expand All @@ -21,11 +21,11 @@
"@types/tough-cookie": "4.0.5",
"@types/uuid": "9.0.8",
"commitizen": "4.3.0",
"concurrently": "8.2.2",
"cpy-cli": "5.0.0",
"cz-conventional-changelog": "3.3.0",
"husky": "9.0.11",
"jest": "29.7.0",
"npm-run-all": "4.1.5",
"open": "10.1.0",
"pinst": "3.0.0",
"rimraf": "5.0.5",
Expand All @@ -46,13 +46,13 @@
"url": "https://github.com/pliancy/addigy-node"
},
"scripts": {
"build": "run-s -l clean test tsc copy",
"build": "concurrently 'yarn clean' 'yarn test' 'yarn tsc' 'yarn copy'",
"build:check": "tsc --noEmit",
"clean": "rimraf coverage dist tmp",
"copy": "pinst --disable && cpy package.json dist && cpy README.md dist && pinst --enable",
"lint": "eslint \"src/**/*.ts\" --fix",
"postinstall": "husky install",
"qa": "run-s -l lint test clean build:check",
"qa": "concurrently 'yarn lint' 'yarn test' ' yarn clean' 'yarn build:check'",
"semantic-release": "semantic-release",
"test": "jest",
"tsc": "tsc -p tsconfig.build.json"
Expand Down
Loading

0 comments on commit 4a633fa

Please sign in to comment.