command-line-director 2.0.0-beta.4 → 2.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/CHANGELOG.md +38 -0
- package/package.json +3 -3
- package/CHANGELOG +0 -26
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
|
|
2
|
+
# Change Log
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
5
|
+
|
|
6
|
+
## v2.0.0 - 2026-02-18
|
|
7
|
+
- CHANGELOG.md [6c65b01]
|
|
8
|
+
- release: 2.0.0 [d4a502f]
|
|
9
|
+
- update version info in release pipeline [87c12a5]
|
|
10
|
+
|
|
11
|
+
## v2.0.0-beta.5 - 2026-02-12
|
|
12
|
+
- update release notes [23d5f01]
|
|
13
|
+
- chore(release): 2.0.0-beta.5 [ea94cc4]
|
|
14
|
+
- changelog [f133e17]
|
|
15
|
+
|
|
16
|
+
## v2.0.0-beta.4 - 2026-02-12
|
|
17
|
+
- add changelog generation [9685ac9]
|
|
18
|
+
- chore(release): 2.0.0-beta.4 [401a87d]
|
|
19
|
+
|
|
20
|
+
## v2.0.0-beta.3 - 2026-01-03
|
|
21
|
+
- transform to typescript and add jest testing [75c2781]
|
|
22
|
+
- add code coverage [f39927f]
|
|
23
|
+
- add release [cf776ff]
|
|
24
|
+
|
|
25
|
+
## 1.0.3 - 2025-12-01
|
|
26
|
+
- bump versions [56c70f8]
|
|
27
|
+
- version info [f4633f3]
|
|
28
|
+
- add lint to ci [48c03a2]
|
|
29
|
+
|
|
30
|
+
## 1.0.2 - 2025-11-30
|
|
31
|
+
- fix vulnerabilities [00f2820]
|
|
32
|
+
- update versions [55ede63]
|
|
33
|
+
- update changelog [ce3bd48]
|
|
34
|
+
|
|
35
|
+
## 1.0.0 - 2021-09-26
|
|
36
|
+
- initial commit [915845e]
|
|
37
|
+
- update documentation [f6b3030]
|
|
38
|
+
- first commit [7e4bc45]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "command-line-director",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Gives direction to you nodejs command line application",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"bugs": "https://github.com/marcojonker/command-line-director/issues",
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"scripts": {
|
|
18
|
-
"changelog": "auto-changelog --hide-empty-releases --template changelog-template.hbs -p && git add CHANGELOG",
|
|
18
|
+
"changelog": "auto-changelog --hide-empty-releases --template changelog-template.hbs -p && git add CHANGELOG.md",
|
|
19
19
|
"build": "tsup src/index.ts --format cjs,esm --dts --out-dir dist",
|
|
20
20
|
"prepare": "npm run build",
|
|
21
21
|
"test": "jest --coverage",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"package.json",
|
|
28
28
|
"README.md",
|
|
29
29
|
"LICENSE",
|
|
30
|
-
"CHANGELOG",
|
|
30
|
+
"CHANGELOG.md",
|
|
31
31
|
"dist"
|
|
32
32
|
],
|
|
33
33
|
"repository": {
|
package/CHANGELOG
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
All notable changes to this project will be documented in this file.
|
|
3
|
-
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
4
|
-
|
|
5
|
-
## [Unreleased]
|
|
6
|
-
|
|
7
|
-
## [1.0.3] - 2025-01-12
|
|
8
|
-
|
|
9
|
-
### Fixes
|
|
10
|
-
- Bump versions
|
|
11
|
-
|
|
12
|
-
## [1.0.2] - 2025-30-11
|
|
13
|
-
|
|
14
|
-
### Fixes
|
|
15
|
-
- Bump versions
|
|
16
|
-
- Add github actions
|
|
17
|
-
|
|
18
|
-
## [1.0.1] - 2023-18-11
|
|
19
|
-
|
|
20
|
-
### Added
|
|
21
|
-
- Initial release
|
|
22
|
-
|
|
23
|
-
## [1.0.0] - 2021-21-09
|
|
24
|
-
|
|
25
|
-
### Added
|
|
26
|
-
- Initial release
|