@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 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-beta.7 linux-x64 node-v22.22.1
21
+ @contentstack/cli/1.60.0 linux-x64 node-v22.22.1
22
22
  $ csdx --help [COMMAND]
23
23
  USAGE
24
24
  $ csdx COMMAND
@@ -7,7 +7,7 @@ export interface InquirePayload {
7
7
  name: string;
8
8
  message: string;
9
9
  choices?: Array<any>;
10
- transformer?: Function;
10
+ transformer?: (value: any) => any;
11
11
  }
12
12
  export interface Region {
13
13
  name: string;
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "commands": {},
3
- "version": "1.60.0-beta.7"
3
+ "version": "1.60.0"
4
4
  }
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 v1-beta",
4
- "version": "1.60.0-beta.7",
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:report": "tsc -p test && nyc --reporter=lcov --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
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-beta.1",
26
- "@contentstack/cli-cm-export": "~1.24.0-beta.1",
27
- "@contentstack/cli-cm-import": "~1.32.0-beta.1",
28
- "@contentstack/cli-auth": "~1.8.0-beta.1",
29
- "@contentstack/cli-cm-bootstrap": "~1.19.0-beta.1",
30
- "@contentstack/cli-cm-branches": "~1.7.0-beta.1",
31
- "@contentstack/cli-cm-bulk-publish": "~1.11.0-beta.1",
32
- "@contentstack/cli-cm-clone": "~1.21.0-beta.1",
33
- "@contentstack/cli-cm-export-to-csv": "~1.12.0-beta.1",
34
- "@contentstack/cli-cm-import-setup": "~1.8.0-beta.1",
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-beta.1",
37
- "@contentstack/cli-command": "~1.8.0-beta.1",
38
- "@contentstack/cli-config": "~1.20.0-beta.1",
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-beta.1",
41
- "@contentstack/cli-utilities": "~1.19.0-beta.0",
42
- "@contentstack/cli-variants": "~1.4.0-beta.1",
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.0",
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
+ }