Skip to content

Commit

Permalink
chore: up dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed Jul 20, 2024
1 parent 8f26e2b commit f62e800
Show file tree
Hide file tree
Showing 3 changed files with 1,027 additions and 780 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 22
node-version: 20

- name: Fetch deps
run: yarn
Expand All @@ -34,7 +34,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-22.04 ]
node-version: [ 18, 20, 22 ]
node-version: [ 18, 20 ]

runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 22
node-version: 20

- name: Fetch deps
run: yarn
Expand All @@ -95,7 +95,7 @@ jobs:
run: yarn test

- name: Codeclimate
uses: paambaati/codeclimate-action@v3.2.0
uses: paambaati/codeclimate-action@v8.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
"access": "public"
},
"scripts": {
"build": "concurrently 'npm:build:*'",
"build": "node ./node_modules/.bin/concurrently 'npm:build:*'",
"build:esm": "node ./src/scripts/build.cjs && rename -f 's/\\.js$/\\.mjs/' target/esm/*.js",
"build:cjs": "node ./src/scripts/build.cjs --cjs",
"build:dts": "tsc --emitDeclarationOnly --outDir target/dts",
"build:docs": "typedoc --options src/main/typedoc",
"lint": "eslint -c src/test/lint/.eslintrc.json src",
"format": "yarn test:lint --fix",
"test": "concurrently 'npm:test:*'",
"test": "node ./node_modules/.bin/concurrently 'npm:test:*'",
"test:lint": "eslint -c src/test/lint/.eslintrc.json src",
"test:unit": "c8 -r html -r text -r lcov --exclude ./src/test -o ./target/coverage uvu -r tsm src/test/ts",
"test:it": "uvu -r tsm src/test/js",
Expand All @@ -41,19 +41,19 @@
"url": "https://github.com/semrel-extra/toposource.git"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/node": "^20.14.11",
"@types/toposort": "^2.0.7",
"benchmark": "^2.1.4",
"c8": "^8.0.1",
"c8": "^10.1.2",
"concurrently": "^8.2.2",
"esbuild": "^0.21.0",
"esbuild-node-externals": "^1.11.0",
"esbuild": "^0.23.0",
"esbuild-node-externals": "^1.14.0",
"eslint": "^8.56.0",
"eslint-config-qiwi": "^2.1.3",
"toposort": "^2.0.2",
"tsm": "^2.3.0",
"typedoc": "^0.25.4",
"typescript": "^5.3.3",
"typedoc": "^0.26.4",
"typescript": "^5.5.3",
"uvu": "^0.5.6"
},
"keywords": [
Expand Down
Loading

0 comments on commit f62e800

Please sign in to comment.