Skip to content

Commit cc7c724

Browse files
authored
chore: bump all (dev) deps (#228)
1 parent 7003b68 commit cc7c724

File tree

6 files changed

+543
-570
lines changed

6 files changed

+543
-570
lines changed

.changeset/funny-bobcats-fly.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"synckit": patch
3+
---
4+
5+
fix: legacy top level `types` entry should prefer `.d.cts`

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Lint
6161
run: yarn lint
6262
# eslint-plugin-unicorn using `with` syntax is not supported
63-
if: ${{ matrix.node != 18 && matrix.node != 18.18 }}
63+
if: ${{ matrix.node != 18.18 }}
6464
env:
6565
PARSER_NO_WATCH: true
6666

@@ -71,3 +71,10 @@ jobs:
7171
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5
7272
with:
7373
token: ${{ secrets.CODECOV_TOKEN }}
74+
75+
- name: Run codacy-coverage-reporter
76+
# bad Windows -- https://github.com/codacy/codacy-coverage-reporter-action/issues/91
77+
if: ${{ matrix.os != 'windows-latest' }}
78+
uses: codacy/codacy-coverage-reporter-action@89d6c85cfafaec52c72b6c5e8b2878d33104c699 # v1.3.0
79+
with:
80+
api-token: ${{ secrets.CODACY_API_TOKEN }}

.github/workflows/codeql.yml

Lines changed: 0 additions & 51 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
[![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com)
1212
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
1313
[![Code Style: Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
14+
[![changesets](https://img.shields.io/badge/maintained%20with-changesets-176de3.svg)](https://github.com/changesets/changesets)
1415

1516
Perform async work synchronously in Node.js/Bun using `worker_threads` with first-class TypeScript and Yarn P'n'P support.
1617

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"node": "^14.18.0 || >=16.0.0"
1313
},
1414
"main": "./lib/index.cjs",
15+
"types": "./index.d.cts",
1516
"module": "./lib/index.js",
1617
"exports": {
1718
"import": {
@@ -27,7 +28,6 @@
2728
"default": "./lib/index.cjs"
2829
}
2930
},
30-
"types": "./lib/index.d.ts",
3131
"files": [
3232
"index.d.cts",
3333
"lib",
@@ -65,28 +65,28 @@
6565
"version": "changeset version && yarn --no-immutable"
6666
},
6767
"dependencies": {
68-
"@pkgr/core": "^0.2.0",
68+
"@pkgr/core": "^0.2.1",
6969
"tslib": "^2.8.1"
7070
},
7171
"devDependencies": {
72-
"@1stg/common-config": "^11.1.1",
72+
"@1stg/common-config": "^12.0.0",
7373
"@changesets/changelog-github": "^0.5.1",
7474
"@changesets/cli": "^2.28.1",
7575
"@commitlint/cli": "^19.8.0",
76-
"@oxc-node/core": "^0.0.21",
77-
"@pkgr/rollup": "^6.0.1",
76+
"@oxc-node/core": "^0.0.22",
77+
"@pkgr/rollup": "^6.0.2",
7878
"@swc-node/register": "^1.10.10",
79-
"@swc/core": "^1.11.16",
79+
"@swc/core": "^1.11.18",
8080
"@swc/helpers": "^0.5.15",
8181
"@types/jest": "^29.5.14",
82-
"@types/node": "^22.13.17",
82+
"@types/node": "^22.14.0",
8383
"@unts/patch-package": "^8.1.1",
8484
"clean-pkg-json": "^1.2.1",
8585
"concurrently": "^9.1.2",
8686
"deasync": "^0.1.30",
8787
"esbuild-register": "^3.6.0",
8888
"esbuild-runner": "^2.2.2",
89-
"eslint": "^9.23.0",
89+
"eslint": "^9.24.0",
9090
"jest": "^29.7.0",
9191
"lint-staged": "^15.5.0",
9292
"make-synchronized": "^0.7.2",
@@ -103,7 +103,7 @@
103103
"ts-node": "^10.9.2",
104104
"tsx": "^4.19.3",
105105
"type-coverage": "^2.29.7",
106-
"typescript": "^5.8.2",
106+
"typescript": "^5.8.3",
107107
"yarn-berry-deduplicate": "^6.1.1"
108108
},
109109
"resolutions": {

0 commit comments

Comments
 (0)