@oxc-project/runtime 0.90.0 → 0.92.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -4,6 +4,20 @@ 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
+
8
+ ## [0.91.0] - 2025-09-22
9
+
10
+ ### 🚀 Features
11
+
12
+ - d74568f npm/runtime: Revert back to CJS (#13999) (Boshen)
13
+ - 36bbba8 npm/runtime: Convert to ES modules (#13874) (Boshen)
14
+
15
+ ### 💼 Other
16
+
17
+ - fb347da crates: V0.91.0 (#13961) (Boshen)
18
+
19
+
20
+
7
21
  ## [0.90.0] - 2025-09-18
8
22
 
9
23
  ### 🚀 Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxc-project/runtime",
3
- "version": "0.90.0",
3
+ "version": "0.92.0",
4
4
  "description": "Oxc's modular runtime helpers",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -9,6 +9,10 @@
9
9
  "directory": "npm/runtime"
10
10
  },
11
11
  "homepage": "https://oxc.rs",
12
+ "engines": {
13
+ "node": "^20.19.0 || >=22.12.0"
14
+ },
15
+ "type": "commonjs",
12
16
  "exports": {
13
17
  "./helpers/OverloadYield": [
14
18
  {
@@ -1058,9 +1062,5 @@
1058
1062
  "./regenerator": "./regenerator/index.js",
1059
1063
  "./regenerator/*.js": "./regenerator/*.js",
1060
1064
  "./regenerator/": "./regenerator/"
1061
- },
1062
- "engines": {
1063
- "node": "^20.19.0 || >=22.12.0"
1064
- },
1065
- "type": "commonjs"
1065
+ }
1066
1066
  }