keep-a-changelog 3.0.3 → 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 +5 -0
- package/package.json +28 -37
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ 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
|
+
|
|
7
11
|
## [3.0.3] - 2026-05-13
|
|
8
12
|
### Fixed
|
|
9
13
|
- Node types [#67]
|
|
@@ -163,6 +167,7 @@ New version merging Deno and Node code using Deno's `dnt` package.
|
|
|
163
167
|
[#64]: https://github.com/oscarotero/keep-a-changelog/issues/64
|
|
164
168
|
[#67]: https://github.com/oscarotero/keep-a-changelog/issues/67
|
|
165
169
|
|
|
170
|
+
[3.0.4]: https://github.com/oscarotero/keep-a-changelog/compare/v3.0.3...v3.0.4
|
|
166
171
|
[3.0.3]: https://github.com/oscarotero/keep-a-changelog/compare/v3.0.2...v3.0.3
|
|
167
172
|
[3.0.2]: https://github.com/oscarotero/keep-a-changelog/compare/v3.0.1...v3.0.2
|
|
168
173
|
[3.0.1]: https://github.com/oscarotero/keep-a-changelog/compare/v3.0.0...v3.0.1
|
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
|
}
|