@contentstack/cli 1.60.0-beta.7 → 1.60.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/lib/interfaces/index.d.ts +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +26 -24
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli
|
|
|
18
18
|
$ csdx COMMAND
|
|
19
19
|
running command...
|
|
20
20
|
$ csdx (--version|-v)
|
|
21
|
-
@contentstack/cli/1.60.0
|
|
21
|
+
@contentstack/cli/1.60.0 linux-x64 node-v22.22.1
|
|
22
22
|
$ csdx --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ csdx COMMAND
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentstack/cli",
|
|
3
|
-
"description": "Command-line tool (CLI) to interact with Contentstack
|
|
4
|
-
"version": "1.60.0
|
|
3
|
+
"description": "Command-line tool (CLI) to interact with Contentstack",
|
|
4
|
+
"version": "1.60.0",
|
|
5
5
|
"author": "Contentstack",
|
|
6
6
|
"bin": {
|
|
7
7
|
"csdx": "./bin/run.js"
|
|
@@ -14,34 +14,31 @@
|
|
|
14
14
|
"compile": "tsc -b tsconfig.json",
|
|
15
15
|
"postpack": "rm -f oclif.manifest.json",
|
|
16
16
|
"version": "oclif readme && git add README.md",
|
|
17
|
-
"test
|
|
18
|
-
"pretest": "tsc -p test",
|
|
19
|
-
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
|
|
20
|
-
"posttest": "npm run lint",
|
|
17
|
+
"test": "mocha \"test/unit/**/*.test.ts\"",
|
|
21
18
|
"lint": "eslint src/**/*.ts",
|
|
22
19
|
"prepack": "pnpm compile && oclif manifest && oclif readme"
|
|
23
20
|
},
|
|
24
21
|
"dependencies": {
|
|
25
|
-
"@contentstack/cli-audit": "~1.19.0
|
|
26
|
-
"@contentstack/cli-cm-export": "~1.24.0
|
|
27
|
-
"@contentstack/cli-cm-import": "~1.32.0
|
|
28
|
-
"@contentstack/cli-auth": "~1.8.0
|
|
29
|
-
"@contentstack/cli-cm-bootstrap": "~1.19.0
|
|
30
|
-
"@contentstack/cli-cm-branches": "~1.7.0
|
|
31
|
-
"@contentstack/cli-cm-bulk-publish": "~1.11.0
|
|
32
|
-
"@contentstack/cli-cm-clone": "~1.21.0
|
|
33
|
-
"@contentstack/cli-cm-export-to-csv": "~1.12.0
|
|
34
|
-
"@contentstack/cli-cm-import-setup": "~1.8.0
|
|
22
|
+
"@contentstack/cli-audit": "~1.19.0",
|
|
23
|
+
"@contentstack/cli-cm-export": "~1.24.0",
|
|
24
|
+
"@contentstack/cli-cm-import": "~1.32.0",
|
|
25
|
+
"@contentstack/cli-auth": "~1.8.0",
|
|
26
|
+
"@contentstack/cli-cm-bootstrap": "~1.19.0",
|
|
27
|
+
"@contentstack/cli-cm-branches": "~1.7.0",
|
|
28
|
+
"@contentstack/cli-cm-bulk-publish": "~1.11.0",
|
|
29
|
+
"@contentstack/cli-cm-clone": "~1.21.0",
|
|
30
|
+
"@contentstack/cli-cm-export-to-csv": "~1.12.0",
|
|
31
|
+
"@contentstack/cli-cm-import-setup": "~1.8.0",
|
|
35
32
|
"@contentstack/cli-cm-migrate-rte": "~1.6.4",
|
|
36
|
-
"@contentstack/cli-cm-seed": "~1.15.0
|
|
37
|
-
"@contentstack/cli-command": "~1.8.0
|
|
38
|
-
"@contentstack/cli-config": "~1.20.0
|
|
33
|
+
"@contentstack/cli-cm-seed": "~1.15.0",
|
|
34
|
+
"@contentstack/cli-command": "~1.8.0",
|
|
35
|
+
"@contentstack/cli-config": "~1.20.0",
|
|
39
36
|
"@contentstack/cli-launch": "^1.9.6",
|
|
40
|
-
"@contentstack/cli-migration": "~1.12.0
|
|
41
|
-
"@contentstack/cli-utilities": "~1.
|
|
42
|
-
"@contentstack/cli-variants": "~1.4.0
|
|
37
|
+
"@contentstack/cli-migration": "~1.12.0",
|
|
38
|
+
"@contentstack/cli-utilities": "~1.18.0",
|
|
39
|
+
"@contentstack/cli-variants": "~1.4.0",
|
|
43
40
|
"@contentstack/management": "~1.27.5",
|
|
44
|
-
"@oclif/core": "^4.3
|
|
41
|
+
"@oclif/core": "^4.8.3",
|
|
45
42
|
"@oclif/plugin-help": "^6.2.28",
|
|
46
43
|
"@oclif/plugin-not-found": "^3.2.53",
|
|
47
44
|
"@oclif/plugin-plugins": "^5.4.54",
|
|
@@ -56,6 +53,11 @@
|
|
|
56
53
|
"uuid": "^9.0.1",
|
|
57
54
|
"winston": "^3.17.0"
|
|
58
55
|
},
|
|
56
|
+
"overrides": {
|
|
57
|
+
"@oclif/core": {
|
|
58
|
+
"picomatch": "^4.0.4"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
59
61
|
"devDependencies": {
|
|
60
62
|
"@oclif/test": "^4.1.16",
|
|
61
63
|
"@types/chai": "^4.3.20",
|
|
@@ -168,4 +170,4 @@
|
|
|
168
170
|
}
|
|
169
171
|
},
|
|
170
172
|
"repository": "https://github.com/contentstack/cli"
|
|
171
|
-
}
|
|
173
|
+
}
|