Skip to content

Commit

Permalink
Update dependencies and node
Browse files Browse the repository at this point in the history
  • Loading branch information
Maaaartin committed May 18, 2024
1 parent 5f68554 commit 2a5491b
Show file tree
Hide file tree
Showing 5 changed files with 203 additions and 282 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install Node, NPM and Yarn
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
registry-url: 'https://registry.npmjs.org'

- name: Install modules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Install Node, NPM and Yarn
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Install modules
run: |
Expand Down
1 change: 1 addition & 0 deletions mockery/mockChildProcess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export class ChildProcessMock implements ChildProcess {
exitCode!: number | null;
signalCode!: NodeJS.Signals | null;
spawnargs!: string[];
[Symbol.dispose](): void {}
spawnfile!: string;
kill(): boolean {
throw new Error('Method not implemented.');
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"url": "https://github.com/Maaaartin/adb-ts.git"
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.18.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -38,16 +38,16 @@
"docs": "npx typedoc --options typedoc.js"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "16.18.58",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-plugin-jest": "^27.4.2",
"@types/jest": "^29.5.12",
"@types/node": "18.18.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^9.3.0",
"eslint-plugin-jest": "^28.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.2",
"typescript": "^5.2.2"
"ts-jest": "^29.1.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"dependencies": {},
"publishConfig": {
Expand Down
Loading

0 comments on commit 2a5491b

Please sign in to comment.