diff --git a/.changeset/honest-onions-add.md b/.changeset/honest-onions-add.md deleted file mode 100644 index 277d4ca18..000000000 --- a/.changeset/honest-onions-add.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"synckit": patch ---- - -fix: `.cjs` should never be treated as ESM diff --git a/.changeset/rare-carrots-brush.md b/.changeset/rare-carrots-brush.md deleted file mode 100644 index b4fb47e8d..000000000 --- a/.changeset/rare-carrots-brush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"synckit": minor ---- - -feat: add `oxc` ts runner support, correct `swc` ts runner with `--import` flag support diff --git a/.changeset/spicy-walls-listen.md b/.changeset/spicy-walls-listen.md deleted file mode 100644 index 9d18bb790..000000000 --- a/.changeset/spicy-walls-listen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"synckit": patch ---- - -refactor: split into chunk files, add `module-sync` entry diff --git a/.changeset/tender-peaches-smell.md b/.changeset/tender-peaches-smell.md deleted file mode 100644 index 809676669..000000000 --- a/.changeset/tender-peaches-smell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"synckit": patch ---- - -fix: only consider `process.features.typescript` when `--no-experimental-strip-types` flag enabled diff --git a/CHANGELOG.md b/CHANGELOG.md index 0660cd8ad..ee799d831 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # synckit +## 0.11.0 + +### Minor Changes + +- [#222](https://github.com/un-ts/synckit/pull/222) [`59f7432`](https://github.com/un-ts/synckit/commit/59f743294c1843b1c4946fa08df42fa785975ffc) Thanks [@JounQin](https://github.com/JounQin)! - feat: add `oxc` ts runner support, correct `swc` ts runner with `--import` flag support + +### Patch Changes + +- [#222](https://github.com/un-ts/synckit/pull/222) [`59f7432`](https://github.com/un-ts/synckit/commit/59f743294c1843b1c4946fa08df42fa785975ffc) Thanks [@JounQin](https://github.com/JounQin)! - fix: `.cjs` should never be treated as ESM + +- [#219](https://github.com/un-ts/synckit/pull/219) [`79fa3a2`](https://github.com/un-ts/synckit/commit/79fa3a2386666be6379244414066888fbebeefac) Thanks [@JounQin](https://github.com/JounQin)! - refactor: split into chunk files, add `module-sync` entry + +- [#222](https://github.com/un-ts/synckit/pull/222) [`59f7432`](https://github.com/un-ts/synckit/commit/59f743294c1843b1c4946fa08df42fa785975ffc) Thanks [@JounQin](https://github.com/JounQin)! - fix: only consider `process.features.typescript` when `--no-experimental-strip-types` flag enabled + ## 0.10.3 ### Patch Changes diff --git a/README.md b/README.md index e558ae26b..e8dd3060c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ # synckit -[![GitHub Actions](https://github.com/un-ts/synckit/workflows/CI/badge.svg)](https://github.com/un-ts/synckit/actions/workflows/ci.yml) +[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/un-ts/synckit/ci.yml?branch=main)](https://github.com/un-ts/synckit/actions/workflows/ci.yml?query=branch%3Amain) [![Codecov](https://img.shields.io/codecov/c/github/un-ts/synckit.svg)](https://codecov.io/gh/un-ts/synckit) [![type-coverage](https://img.shields.io/badge/dynamic/json.svg?label=type-coverage&prefix=%E2%89%A5&suffix=%&query=$.typeCoverage.atLeast&uri=https%3A%2F%2Fraw.githubusercontent.com%2Fun-ts%2Fsynckit%2Fmain%2Fpackage.json)](https://github.com/plantain-00/type-coverage) +[![CodeRabbit Pull Request Reviews](https://img.shields.io/coderabbit/prs/github/un-ts/synckit)](https://coderabbit.ai) [![npm](https://img.shields.io/npm/v/synckit.svg)](https://www.npmjs.com/package/synckit) [![GitHub Release](https://img.shields.io/github/release/un-ts/synckit)](https://github.com/un-ts/synckit/releases) diff --git a/package.json b/package.json index 2cb997047..e448b0f32 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "synckit", - "version": "0.10.3", + "version": "0.11.0", "type": "module", "description": "Perform async work synchronously in Node.js using `worker_threads` with first-class TypeScript support.", "repository": "https://github.com/un-ts/synckit.git",