@oxc-project/runtime 0.148.0 → 0.149.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +2 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
|
|
6
6
|
|
|
7
|
+
## [0.149.0] - 2026-09-07
|
|
8
|
+
|
|
9
|
+
### 🐛 Bug Fixes
|
|
10
|
+
|
|
11
|
+
- 34feccb runtime: Remove stale regenerator exports (#26243) (camc314)
|
|
12
|
+
|
|
7
13
|
|
|
8
14
|
|
|
9
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oxc-project/runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.149.0",
|
|
4
4
|
"description": "Oxc's modular runtime helpers",
|
|
5
5
|
"homepage": "https://oxc.rs",
|
|
6
6
|
"license": "MIT",
|
|
@@ -1055,10 +1055,7 @@
|
|
|
1055
1055
|
"./src/helpers/writeOnlyError.js"
|
|
1056
1056
|
],
|
|
1057
1057
|
"./package": "./package.json",
|
|
1058
|
-
"./package.json": "./package.json"
|
|
1059
|
-
"./regenerator": "./regenerator/index.js",
|
|
1060
|
-
"./regenerator/": "./regenerator/",
|
|
1061
|
-
"./regenerator/*.js": "./regenerator/*.js"
|
|
1058
|
+
"./package.json": "./package.json"
|
|
1062
1059
|
},
|
|
1063
1060
|
"engines": {
|
|
1064
1061
|
"node": "^20.19.0 || >=22.12.0"
|