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 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.2",
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
- "import": {
31
- "types": "./types/mod.d.ts",
32
- "default": "./mod.js"
33
- }
30
+ "types": "./types/mod.d.ts",
31
+ "import": "./mod.js",
32
+ "default": "./mod.js"
34
33
  },
35
34
  "./bin.js": {
36
- "import": {
37
- "types": "./types/bin.d.ts",
38
- "default": "./bin.js"
39
- }
35
+ "types": "./types/bin.d.ts",
36
+ "import": "./bin.js",
37
+ "default": "./bin.js"
40
38
  },
41
39
  "./mod.js": {
42
- "import": {
43
- "types": "./types/mod.d.ts",
44
- "default": "./mod.js"
45
- }
40
+ "types": "./types/mod.d.ts",
41
+ "import": "./mod.js",
42
+ "default": "./mod.js"
46
43
  },
47
44
  "./src/Change.js": {
48
- "import": {
49
- "types": "./types/src/Change.d.ts",
50
- "default": "./src/Change.js"
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
- "import": {
55
- "types": "./types/src/Changelog.d.ts",
56
- "default": "./src/Changelog.js"
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
- "import": {
61
- "types": "./types/src/deps.d.ts",
62
- "default": "./src/deps.js"
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
- "import": {
67
- "types": "./types/src/parser.d.ts",
68
- "default": "./src/parser.js"
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
- "import": {
73
- "types": "./types/src/Release.d.ts",
74
- "default": "./src/Release.js"
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
- "import": {
79
- "types": "./types/src/settings.d.ts",
80
- "default": "./src/settings.js"
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 };
@@ -1,4 +1,4 @@
1
- import Change from "./Change.d.ts";
1
+ import type Change from "./Change.d.ts";
2
2
  import type Changelog from "./Changelog.d.ts";
3
3
  import type { SemVer } from "./deps.d.ts";
4
4
  export default class Release {
@@ -1,4 +1,4 @@
1
- export { default as SemVer } from "npm:semver@7.7.4/classes/semver.js";
2
- export { default as parse } from "npm:semver@7.7.4/functions/parse.js";
3
- export { default as compare } from "npm:semver@7.7.4/functions/compare.js";
4
- export { default as equals } from "npm:semver@7.7.4/functions/eq.js";
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";
@@ -1,5 +1,5 @@
1
- import Changelog from "./Changelog.d.ts";
2
- import Release from "./Release.d.ts";
1
+ import type Changelog from "./Changelog.d.ts";
2
+ import type Release from "./Release.d.ts";
3
3
  export interface Options {
4
4
  /**
5
5
  * Custom function to create Release instances.