goatlint-runtime 0.125.0 → 0.126.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 (3) hide show
  1. package/README.md +16 -3
  2. package/package.json +15 -9
  3. package/CHANGELOG.md +0 -88
package/README.md CHANGED
@@ -1,5 +1,18 @@
1
- # Oxc's modular runtime helpers
1
+ # @goatlint/runtime
2
2
 
3
- Code copied from the published package `@babel/runtime`.
3
+ Modular runtime helpers used by Oxc's transformer output.
4
4
 
5
- All credits to the Babel team.
5
+ Based on `@babel/runtime` — all credits to the Babel team.
6
+
7
+ ## Usage
8
+
9
+ This package is not meant to be installed directly. It is automatically referenced by code transformed with Oxc's transformer when runtime helpers are needed.
10
+
11
+ ## Links
12
+
13
+ - [Transformer Documentation](https://goatlint.dev/docs/guide/usage/transformer)
14
+ - [GitHub](https://github.com/goat-project/oxc)
15
+
16
+ ## License
17
+
18
+ [MIT](https://github.com/goat-project/oxc/blob/main/LICENSE)
package/package.json CHANGED
@@ -1,14 +1,23 @@
1
1
  {
2
2
  "name": "goatlint-runtime",
3
- "version": "0.125.0",
4
- "description": "Oxc's modular runtime helpers",
5
- "homepage": "https://goatlint.dev",
3
+ "version": "0.126.0",
4
+ "description": "Modular runtime helpers for Oxc transformer output",
5
+ "homepage": "https://github.com/JustFly1984/oxc",
6
+ "bugs": "https://github.com/JustFly1984/oxc/issues",
6
7
  "license": "MIT",
8
+ "author": "Alexey Lyakhov (fork of oxc by Boshen and contributors)",
7
9
  "repository": {
8
10
  "type": "git",
9
- "url": "https://github.com/goat-project/oxc.git",
10
- "directory": "npm/runtime"
11
+ "url": "git+https://github.com/JustFly1984/oxc",
12
+ "directory": "npm/goatlint-runtime"
11
13
  },
14
+ "funding": {
15
+ "url": "https://github.com/sponsors/JustFly1984"
16
+ },
17
+ "files": [
18
+ "src",
19
+ "README.md"
20
+ ],
12
21
  "type": "commonjs",
13
22
  "exports": {
14
23
  "./helpers/AwaitValue": [
@@ -1055,10 +1064,7 @@
1055
1064
  "./src/helpers/writeOnlyError.js"
1056
1065
  ],
1057
1066
  "./package": "./package.json",
1058
- "./package.json": "./package.json",
1059
- "./regenerator": "./regenerator/index.js",
1060
- "./regenerator/": "./regenerator/",
1061
- "./regenerator/*.js": "./regenerator/*.js"
1067
+ "./package.json": "./package.json"
1062
1068
  },
1063
1069
  "engines": {
1064
1070
  "node": "^20.19.0 || >=22.12.0"
package/CHANGELOG.md DELETED
@@ -1,88 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this package will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
6
-
7
-
8
-
9
-
10
-
11
-
12
- ## [0.91.0] - 2025-09-22
13
-
14
- ### 🚀 Features
15
-
16
- - d74568f npm/runtime: Revert back to CJS (#13999) (Boshen)
17
- - 36bbba8 npm/runtime: Convert to ES modules (#13874) (Boshen)
18
-
19
- ### 💼 Other
20
-
21
- - fb347da crates: V0.91.0 (#13961) (Boshen)
22
-
23
-
24
-
25
- ## [0.90.0] - 2025-09-18
26
-
27
- ### 🚀 Features
28
-
29
- - b52389a node: Bump `engines` field to require Node.js 20.19.0+ for ESM support (#13879) (Copilot)
30
-
31
-
32
-
33
-
34
-
35
-
36
-
37
-
38
-
39
-
40
-
41
-
42
-
43
-
44
-
45
-
46
-
47
-
48
-
49
-
50
-
51
-
52
-
53
-
54
-
55
-
56
-
57
-
58
-
59
- # Changelog
60
-
61
- All notable changes to this package will be documented in this file.
62
-
63
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
64
-
65
- ## [0.52.0] - 2025-02-21
66
-
67
- ### Features
68
-
69
- - 6c24357 npm/runtime: Add `decorateMetadata` helper function (#9189) (Dunqing)
70
-
71
- ## [0.51.0] - 2025-02-15
72
-
73
- ### Bug Fixes
74
-
75
- - 5f15605 npm/runtime: Incorrect file paths in `exports` (#9069) (Dunqing)
76
-
77
- ## [0.50.0] - 2025-02-12
78
-
79
- ### Features
80
-
81
- - b89f691 npm/runtime: Add `decorate` and `decorateParam` helper functions (#8971) (Dunqing)
82
-
83
- ## [0.49.0] - 2025-02-10
84
-
85
- ### Features
86
-
87
- - 951b2d5 npm/runtime: Add `@goat-project/runtime` package (#8595) (Boshen)
88
-