@objectdocs/cli 0.2.1 → 0.2.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/CHANGELOG.md +16 -0
- package/package.json +11 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @objectdocs/cli
|
|
2
2
|
|
|
3
|
+
## 0.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: update package metadata for publishing
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @objectdocs/site@0.2.3
|
|
10
|
+
|
|
11
|
+
## 0.2.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated README documentation with corrected configuration file names and enhanced Quick Start section
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @objectdocs/site@0.2.2
|
|
18
|
+
|
|
3
19
|
## 0.2.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectdocs/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
|
+
"description": "ObjectDocs CLI",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/steedos/objectdocs.git",
|
|
8
|
+
"directory": "packages/cli"
|
|
9
|
+
},
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
4
13
|
"type": "module",
|
|
5
14
|
"bin": {
|
|
6
15
|
"objectdocs": "./bin/cli.mjs"
|
|
@@ -11,7 +20,7 @@
|
|
|
11
20
|
"dotenv": "^16.4.5",
|
|
12
21
|
"openai": "^4.0.0",
|
|
13
22
|
"typescript": "^5.9.3",
|
|
14
|
-
"@objectdocs/site": "0.2.
|
|
23
|
+
"@objectdocs/site": "0.2.3"
|
|
15
24
|
},
|
|
16
25
|
"scripts": {
|
|
17
26
|
"dev": "node ./bin/cli.mjs dev ../../content/docs",
|