Skip to content

Commit

Permalink
Update deps and CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoddo committed Jan 2, 2025
1 parent 90495f5 commit a5f2551
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [lts/-1, lts/*, latest]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
"author": "Zoddo <[email protected]>",
"license": "ISC",
"dependencies": {
"gelf-pro": "^1.3.3",
"gelf-pro": "^1.3.12",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.11",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.3",
"@vexera/tslint-config": "^1.0.0",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
"tslint": "^6.1.3",
"typescript": "^5.7.2"
}
}
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"module": "commonjs",
"declaration": true,
"esModuleInterop": true,
"target": "es6",
"target": "es2022",
"moduleResolution": "node",
"sourceMap": true,
"strict": true,
"outDir": "lib"
},
"lib": ["es2015"],
"lib": ["es2022"],
"include": ["src", "typings"]
}

0 comments on commit a5f2551

Please sign in to comment.