8000 chore: bump all (dev) deps by JounQin · Pull Request #228 · un-ts/synckit · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chore: bump all (dev) deps #228

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/funny-bobcats-fly.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"synckit": patch
---

fix: legacy top level `types` entry should prefer `.d.cts`
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Lint
run: yarn lint
# eslint-plugin-unicorn using `with` syntax is not supported
if: ${{ matrix.node != 18 && matrix.node != 18.18 }}
if: ${{ matrix.node != 18.18 }}
env:
PARSER_NO_WATCH: true

Expand All @@ -71,3 +71,10 @@ jobs:
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5
with:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Run codacy-coverage-reporter
# bad Windows -- https://github.com/codacy/codacy-coverage-reporter-action/issues/91
if: ${{ matrix.os != 'windows-latest' }}
uses: codacy/codacy-coverage-reporter-action@89d6c85cfafaec52c72b6c5e8b2878d33104c699 # v1.3.0
with:
api-token: ${{ secrets.CODACY_API_TOKEN }}
51 changes: 0 additions & 51 deletions .github/workflows/codeql.yml

This file was deleted.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
[![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com)
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
[![Code Style: Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
[![changesets](https://img.shields.io/badge/maintained%20with-changesets-176de3.svg)](https://github.com/changesets/changesets)

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

Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"node": "^14.18.0 || >=16.0.0"
},
"main": "./lib/index.cjs",
"types": "./index.d.cts",
"module": "./lib/index.js",
"exports": {
"import": {
Expand All @@ -27,7 +28,6 @@
"default": "./lib/index.cjs"
}
},
"types": "./lib/index.d.ts",
"files": [
"index.d.cts",
"lib",
Expand Down Expand Up @@ -65,28 +65,28 @@
"version": "changeset version && yarn --no-immutable"
},
"dependencies": {
"@pkgr/core": "^0.2.0",
"@pkgr/core": "^0.2.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@1stg/common-config": "^11.1.1",
"@1stg/common-config": "^12.0.0",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^19.8.0",
"@oxc-node/core": "^0.0.21",
"@pkgr/rollup": "^6.0.1",
"@oxc-node/core": "^0.0.22",
"@pkgr/rollup": "^6.0.2",
"@swc-node/register": "^1.10.10",
"@swc/core": "^1.11.16",
"@swc/core": "^1.11.18",
"@swc/helpers": "^0.5.15",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.17",
"@types/node": "^22.14.0",
"@unts/patch-package": "^8.1.1",
"clean-pkg-json": "^1.2.1",
"concurrently": "^9.1.2",
"deasync": "^0.1.30",
"esbuild-register": "^3.6.0",
"esbuild-runner": "^2.2.2",
"eslint": "^9.23.0",
"eslint": "^9.24.0",
"jest": "^29.7.0",
"lint-staged": "^15.5.0",
"make-synchronized": "^0.7.2",
Expand All @@ -103,7 +103,7 @@
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"type-coverage": "^2.29.7",
"typescript": "^5.8.2",
"typescript": "^5.8.3",
"yarn-berry-deduplicate": "^6.1.1"
},
"resolutions": {
Expand Down
Loading
Loading
0