@changesmith/cli 1.6.0 → 1.6.3
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/dist/index.js +7 -9
- package/dist/index.js.map +1 -1
- package/package.json +14 -14
- package/LICENSE +0 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@changesmith/cli",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "CLI for generating changelogs from git commits",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -11,29 +11,29 @@
|
|
|
11
11
|
"files": [
|
|
12
12
|
"dist"
|
|
13
13
|
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsup",
|
|
16
|
+
"dev": "tsup --watch",
|
|
17
|
+
"typecheck": "tsc --noEmit",
|
|
18
|
+
"test": "vitest run",
|
|
19
|
+
"clean": "rm -rf dist"
|
|
20
|
+
},
|
|
14
21
|
"dependencies": {
|
|
15
22
|
"chalk": "^5.3.0",
|
|
16
23
|
"commander": "^12.1.0",
|
|
17
24
|
"conf": "^13.0.0",
|
|
18
|
-
"ora": "^8.0.1"
|
|
19
|
-
"@changesmith/core": "1.6.0",
|
|
20
|
-
"@changesmith/types": "1.6.0"
|
|
25
|
+
"ora": "^8.0.1"
|
|
21
26
|
},
|
|
22
27
|
"devDependencies": {
|
|
28
|
+
"@changesmith/core": "workspace:*",
|
|
29
|
+
"@changesmith/tsconfig": "workspace:*",
|
|
30
|
+
"@changesmith/types": "workspace:*",
|
|
23
31
|
"@types/node": "^22.19.10",
|
|
24
32
|
"tsup": "^8.0.2",
|
|
25
33
|
"typescript": "^5.7.3",
|
|
26
|
-
"vitest": "^2.1.9"
|
|
27
|
-
"@changesmith/tsconfig": "1.6.0"
|
|
34
|
+
"vitest": "^2.1.9"
|
|
28
35
|
},
|
|
29
36
|
"engines": {
|
|
30
37
|
"node": ">=20"
|
|
31
|
-
},
|
|
32
|
-
"scripts": {
|
|
33
|
-
"build": "tsup",
|
|
34
|
-
"dev": "tsup --watch",
|
|
35
|
-
"typecheck": "tsc --noEmit",
|
|
36
|
-
"test": "vitest run",
|
|
37
|
-
"clean": "rm -rf dist"
|
|
38
38
|
}
|
|
39
|
-
}
|
|
39
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# License
|
|
2
|
-
|
|
3
|
-
Copyright © 2026 Philip Ludington. All rights reserved.
|
|
4
|
-
|
|
5
|
-
This software and associated documentation files (the "Software") are proprietary and confidential.
|
|
6
|
-
|
|
7
|
-
## Terms
|
|
8
|
-
|
|
9
|
-
1. **No Permission Granted** — No permission is granted to use, copy, modify, merge, publish, distribute, sublicense, or sell copies of the Software.
|
|
10
|
-
|
|
11
|
-
2. **No Derivative Works** — You may not create derivative works based on this Software.
|
|
12
|
-
|
|
13
|
-
3. **No Redistribution** — You may not redistribute this Software in any form.
|
|
14
|
-
|
|
15
|
-
4. **Viewing Only** — This repository is public for transparency purposes only. Viewing the code does not grant any rights to use it.
|
|
16
|
-
|
|
17
|
-
## Contact
|
|
18
|
-
|
|
19
|
-
For licensing inquiries, contact: philip@mrphilgames.com
|