Skip to content

Commit c78ca5e

Browse files
committed
chore(release): publish
- @swc-node/[email protected] - @swc-node/[email protected] - @swc-node/[email protected] - @swc-node/[email protected]
1 parent d64fcb0 commit c78ca5e

File tree

9 files changed

+37
-14
lines changed

9 files changed

+37
-14
lines changed

packages/core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.13.1](https://github.com/swc-project/swc-node/compare/@swc-node/[email protected]...@swc-node/[email protected]) (2024-05-01)
7+
8+
### Bug Fixes
9+
10+
- support compile js files. close [#761](https://github.com/swc-project/swc-node/issues/761) ([#767](https://github.com/swc-project/swc-node/issues/767)) ([016f1aa](https://github.com/swc-project/swc-node/commit/016f1aab2a17d2512d30b5a12848ed1941b59e49))
11+
612
# [1.13.0](https://github.com/swc-project/swc-node/compare/@swc-node/[email protected]...@swc-node/[email protected]) (2024-03-05)
713

814
### Features

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc-node/core",
3-
"version": "1.13.0",
3+
"version": "1.13.1",
44
"description": "Faster swc nodejs binding",
55
"keywords": [
66
"swc",

packages/jest/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.8.1](https://github.com/swc-project/swc-node/compare/@swc-node/[email protected]...@swc-node/[email protected]) (2024-05-01)
7+
8+
### Bug Fixes
9+
10+
- support compile js files. close [#761](https://github.com/swc-project/swc-node/issues/761) ([#767](https://github.com/swc-project/swc-node/issues/767)) ([016f1aa](https://github.com/swc-project/swc-node/commit/016f1aab2a17d2512d30b5a12848ed1941b59e49))
11+
612
# [1.8.0](https://github.com/swc-project/swc-node/compare/@swc-node/[email protected]...@swc-node/[email protected]) (2024-03-05)
713

814
### Features

packages/jest/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc-node/jest",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"description": "swc preprocessor for jest with source map support",
55
"keywords": [
66
"swc",
@@ -28,8 +28,8 @@
2828
},
2929
"dependencies": {
3030
"@node-rs/xxhash": "^1.7.3",
31-
"@swc-node/core": "^1.13.0",
32-
"@swc-node/register": "^1.9.0"
31+
"@swc-node/core": "^1.13.1",
32+
"@swc-node/register": "^1.9.1"
3333
},
3434
"peerDependencies": {
3535
"@swc/core": ">= 1.4.13",

packages/loader/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.5.1](https://github.com/swc-project/swc-node/compare/@swc-node/[email protected]...@swc-node/[email protected]) (2024-05-01)
7+
8+
**Note:** Version bump only for package @swc-node/loader
9+
610
# [1.5.0](https://github.com/swc-project/swc-node/compare/@swc-node/[email protected]...@swc-node/[email protected]) (2024-03-05)
711

812
### Features

packages/loader/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc-node/loader",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"description": "Webpack loader powered by swc",
55
"keywords": [
66
"swc",
@@ -28,8 +28,8 @@
2828
"access": "public"
2929
},
3030
"dependencies": {
31-
"@swc-node/core": "^1.13.0",
32-
"@swc-node/register": "^1.9.0"
31+
"@swc-node/core": "^1.13.1",
32+
"@swc-node/register": "^1.9.1"
3333
},
3434
"peerDependencies": {
3535
"typescript": ">= 4.3",

packages/register/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.9.1](https://github.com/swc-project/swc-node/compare/@swc-node/[email protected]...@swc-node/[email protected]) (2024-05-01)
7+
8+
### Bug Fixes
9+
10+
- **register:** fix esm entry resolver for third-party executer, close [#762](https://github.com/swc-project/swc-node/issues/762) ([#766](https://github.com/swc-project/swc-node/issues/766)) ([9e6c02f](https://github.com/swc-project/swc-node/commit/9e6c02feb9a19d9782981f984084885e92dae031))
11+
- support compile js files. close [#761](https://github.com/swc-project/swc-node/issues/761) ([#767](https://github.com/swc-project/swc-node/issues/767)) ([016f1aa](https://github.com/swc-project/swc-node/commit/016f1aab2a17d2512d30b5a12848ed1941b59e49))
12+
613
# [1.9.0](https://github.com/swc-project/swc-node/compare/@swc-node/[email protected]...@swc-node/[email protected]) (2024-03-05)
714

815
### Bug Fixes

packages/register/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc-node/register",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"description": "SWC node register",
55
"keywords": [
66
"swc",
@@ -40,7 +40,7 @@
4040
"url": "https://github.com/swc-project/swc-node/issues"
4141
},
4242
"dependencies": {
43-
"@swc-node/core": "^1.13.0",
43+
"@swc-node/core": "^1.13.1",
4444
"@swc-node/sourcemap-support": "^0.5.0",
4545
"colorette": "^2.0.20",
4646
"debug": "^4.3.4",

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)