keep-a-changelog 3.0.2 → 3.0.4
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 +11 -0
- package/package.json +28 -37
- package/types/mod.d.ts +4 -4
- package/types/src/Release.d.ts +1 -1
- package/types/src/deps.d.ts +4 -4
- package/types/src/parser.d.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [3.0.4] - 2026-05-22
|
|
8
|
+
### Fixed
|
|
9
|
+
- Node types (again) [#67]
|
|
10
|
+
|
|
11
|
+
## [3.0.3] - 2026-05-13
|
|
12
|
+
### Fixed
|
|
13
|
+
- Node types [#67]
|
|
14
|
+
|
|
7
15
|
## [3.0.2] - 2026-02-24
|
|
8
16
|
### Fixed
|
|
9
17
|
- NPX executable [#64]
|
|
@@ -157,7 +165,10 @@ New version merging Deno and Node code using Deno's `dnt` package.
|
|
|
157
165
|
[#61]: https://github.com/oscarotero/keep-a-changelog/issues/61
|
|
158
166
|
[#62]: https://github.com/oscarotero/keep-a-changelog/issues/62
|
|
159
167
|
[#64]: https://github.com/oscarotero/keep-a-changelog/issues/64
|
|
168
|
+
[#67]: https://github.com/oscarotero/keep-a-changelog/issues/67
|
|
160
169
|
|
|
170
|
+
[3.0.4]: https://github.com/oscarotero/keep-a-changelog/compare/v3.0.3...v3.0.4
|
|
171
|
+
[3.0.3]: https://github.com/oscarotero/keep-a-changelog/compare/v3.0.2...v3.0.3
|
|
161
172
|
[3.0.2]: https://github.com/oscarotero/keep-a-changelog/compare/v3.0.1...v3.0.2
|
|
162
173
|
[3.0.1]: https://github.com/oscarotero/keep-a-changelog/compare/v3.0.0...v3.0.1
|
|
163
174
|
[3.0.0]: https://github.com/oscarotero/keep-a-changelog/compare/v2.8.0...v3.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "keep-a-changelog",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.4",
|
|
4
4
|
"description": "Parse and generate changelogs following the [keepachangelog](https://keepachangelog.com/) format.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -27,58 +27,49 @@
|
|
|
27
27
|
},
|
|
28
28
|
"exports": {
|
|
29
29
|
".": {
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
}
|
|
30
|
+
"types": "./types/mod.d.ts",
|
|
31
|
+
"import": "./mod.js",
|
|
32
|
+
"default": "./mod.js"
|
|
34
33
|
},
|
|
35
34
|
"./bin.js": {
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
35
|
+
"types": "./types/bin.d.ts",
|
|
36
|
+
"import": "./bin.js",
|
|
37
|
+
"default": "./bin.js"
|
|
40
38
|
},
|
|
41
39
|
"./mod.js": {
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
40
|
+
"types": "./types/mod.d.ts",
|
|
41
|
+
"import": "./mod.js",
|
|
42
|
+
"default": "./mod.js"
|
|
46
43
|
},
|
|
47
44
|
"./src/Change.js": {
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
45
|
+
"types": "./types/src/Change.d.ts",
|
|
46
|
+
"import": "./src/Change.js",
|
|
47
|
+
"default": "./src/Change.js"
|
|
52
48
|
},
|
|
53
49
|
"./src/Changelog.js": {
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
}
|
|
50
|
+
"types": "./types/src/Changelog.d.ts",
|
|
51
|
+
"import": "./src/Changelog.js",
|
|
52
|
+
"default": "./src/Changelog.js"
|
|
58
53
|
},
|
|
59
54
|
"./src/deps.js": {
|
|
60
|
-
"
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
55
|
+
"types": "./types/src/deps.d.ts",
|
|
56
|
+
"import": "./src/deps.js",
|
|
57
|
+
"default": "./src/deps.js"
|
|
64
58
|
},
|
|
65
59
|
"./src/parser.js": {
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
}
|
|
60
|
+
"types": "./types/src/parser.d.ts",
|
|
61
|
+
"import": "./src/parser.js",
|
|
62
|
+
"default": "./src/parser.js"
|
|
70
63
|
},
|
|
71
64
|
"./src/Release.js": {
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
}
|
|
65
|
+
"types": "./types/src/Release.d.ts",
|
|
66
|
+
"import": "./src/Release.js",
|
|
67
|
+
"default": "./src/Release.js"
|
|
76
68
|
},
|
|
77
69
|
"./src/settings.js": {
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
}
|
|
70
|
+
"types": "./types/src/settings.d.ts",
|
|
71
|
+
"import": "./src/settings.js",
|
|
72
|
+
"default": "./src/settings.js"
|
|
82
73
|
}
|
|
83
74
|
}
|
|
84
75
|
}
|
package/types/mod.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import parser from "./src/parser.d.ts";
|
|
2
|
-
import Change from "./src/Change.d.ts";
|
|
3
|
-
import Changelog from "./src/Changelog.d.ts";
|
|
4
|
-
import Release from "./src/Release.d.ts";
|
|
1
|
+
import type parser from "./src/parser.d.ts";
|
|
2
|
+
import type Change from "./src/Change.d.ts";
|
|
3
|
+
import type Changelog from "./src/Changelog.d.ts";
|
|
4
|
+
import type Release from "./src/Release.d.ts";
|
|
5
5
|
export { Change, Changelog, parser, Release };
|
package/types/src/Release.d.ts
CHANGED
package/types/src/deps.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { default as SemVer } from "
|
|
2
|
-
export { default as parse } from "
|
|
3
|
-
export { default as compare } from "
|
|
4
|
-
export { default as equals } from "
|
|
1
|
+
export { default as SemVer } from "semver/classes/semver.js";
|
|
2
|
+
export { default as parse } from "semver/functions/parse.js";
|
|
3
|
+
export { default as compare } from "semver/functions/compare.js";
|
|
4
|
+
export { default as equals } from "semver/functions/eq.js";
|
package/types/src/parser.d.ts
CHANGED