standard-changelog 7.0.1 → 8.0.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.
- package/README.md +1 -1
- package/dist/cli.js +3 -1
- package/dist/index.d.ts.map +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
[node-url]: https://nodejs.org
|
|
19
19
|
|
|
20
20
|
[deps]: https://img.shields.io/librariesio/release/npm/standard-changelog
|
|
21
|
-
[deps-url]: https://libraries.io/npm/standard-changelog
|
|
21
|
+
[deps-url]: https://libraries.io/npm/standard-changelog
|
|
22
22
|
|
|
23
23
|
[size]: https://packagephobia.com/badge?p=standard-changelog
|
|
24
24
|
[size-url]: https://packagephobia.com/result?p=standard-changelog
|
package/dist/cli.js
CHANGED
|
@@ -27,10 +27,12 @@ const cli = meow(`
|
|
|
27
27
|
-l, --lerna-package Generate a changelog for a specific lerna package (:pkg-name@1.0.0)
|
|
28
28
|
-t, --tag-prefix Tag prefix to consider when reading the tags
|
|
29
29
|
--commit-path Generate a changelog scoped to a specific directory
|
|
30
|
+
--from Start commit range from a specific tag or sha
|
|
31
|
+
--to End commit range at a specific tag or sha
|
|
30
32
|
`, {
|
|
31
33
|
importMeta: import.meta,
|
|
32
34
|
booleanDefault: undefined,
|
|
33
35
|
flags
|
|
34
36
|
});
|
|
35
37
|
await runProgram(new StandardChangelog(process.cwd()), cli.flags);
|
|
36
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xpLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2NsaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQ0EsT0FBTyxJQUFJLE1BQU0sTUFBTSxDQUFBO0FBQ3ZCLE9BQU8sRUFDTCxLQUFLLEVBQ0wsVUFBVSxFQUNYLE1BQU0sd0JBQXdCLENBQUE7QUFDL0IsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sWUFBWSxDQUFBO0FBRTlDLE1BQU0sR0FBRyxHQUFHLElBQUksQ0FBQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBMkJoQixFQUFFO0lBQ0QsVUFBVSxFQUFFLE9BQU8sSUFBSTtJQUN2QixjQUFjLEVBQUUsU0FBUztJQUN6QixLQUFLO0NBQ04sQ0FBQyxDQUFBO0FBRUYsTUFBTSxVQUFVLENBQ2QsSUFBSSxpQkFBaUIsQ0FBQyxPQUFPLENBQUMsR0FBRyxFQUFFLENBQUMsRUFDcEMsR0FBRyxDQUFDLEtBQUssQ0FDVixDQUFBIn0=
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAA;AAC/E,OAAO,EAAE,qBAAqB,EAAE,MAAM,wBAAwB,CAAA;AAG9D,cAAc,wBAAwB,CAAA;AAEtC,qBAAa,iBAAkB,SAAQ,qBAAqB;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAA;AAC/E,OAAO,EAAE,qBAAqB,EAAE,MAAM,wBAAwB,CAAA;AAG9D,cAAc,wBAAwB,CAAA;AAEtC,qBAAa,iBAAkB,SAAQ,qBAAqB;IAC1D,YAAY,cAAc,EAAE,MAAM,GAAG,qBAAqB,EAIzD;CACF"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "standard-changelog",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "8.0.0",
|
|
5
5
|
"description": "Generate a changelog from git metadata with Angular commit convention.",
|
|
6
6
|
"author": "Steve Mao",
|
|
7
7
|
"license": "MIT",
|
|
@@ -22,10 +22,7 @@
|
|
|
22
22
|
"log"
|
|
23
23
|
],
|
|
24
24
|
"engines": {
|
|
25
|
-
"node": ">=
|
|
26
|
-
},
|
|
27
|
-
"bin": {
|
|
28
|
-
"standard-changelog": "./dist/cli.js"
|
|
25
|
+
"node": ">=22"
|
|
29
26
|
},
|
|
30
27
|
"exports": {
|
|
31
28
|
"types": "./dist/index.d.ts",
|
|
@@ -35,9 +32,12 @@
|
|
|
35
32
|
"dist"
|
|
36
33
|
],
|
|
37
34
|
"dependencies": {
|
|
38
|
-
"meow": "^
|
|
39
|
-
"@conventional-changelog/git-client": "^
|
|
40
|
-
"conventional-changelog-angular": "^
|
|
41
|
-
"conventional-changelog": "^
|
|
35
|
+
"meow": "^14.0.0",
|
|
36
|
+
"@conventional-changelog/git-client": "^3.0.0",
|
|
37
|
+
"conventional-changelog-angular": "^9.0.0",
|
|
38
|
+
"conventional-changelog": "^8.0.0"
|
|
39
|
+
},
|
|
40
|
+
"bin": {
|
|
41
|
+
"standard-changelog": "./dist/cli.js"
|
|
42
42
|
}
|
|
43
43
|
}
|