@contentstack/cli-cm-clone 1.2.0 → 1.3.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/LICENSE +1 -1
- package/README.md +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +11 -10
- package/src/commands/cm/stacks/clone.js +2 -2
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ $ npm install -g @contentstack/cli-cm-clone
|
|
|
15
15
|
$ csdx COMMAND
|
|
16
16
|
running command...
|
|
17
17
|
$ csdx (--version)
|
|
18
|
-
@contentstack/cli-cm-clone/1.
|
|
18
|
+
@contentstack/cli-cm-clone/1.3.0 linux-x64 node-v16.19.1
|
|
19
19
|
$ csdx --help [COMMAND]
|
|
20
20
|
USAGE
|
|
21
21
|
$ csdx COMMAND
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentstack/cli-cm-clone",
|
|
3
3
|
"description": "Contentstack stack clone plugin",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.3.0",
|
|
5
5
|
"author": "Contentstack",
|
|
6
6
|
"bugs": "https://github.com/rohitmishra209/cli-cm-clone/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@contentstack/cli-cm-export": "^1.
|
|
9
|
-
"@contentstack/cli-cm-import": "^1.
|
|
10
|
-
"@contentstack/cli-command": "^1.
|
|
11
|
-
"@contentstack/cli-utilities": "^1.
|
|
8
|
+
"@contentstack/cli-cm-export": "^1.4.0",
|
|
9
|
+
"@contentstack/cli-cm-import": "^1.4.0",
|
|
10
|
+
"@contentstack/cli-command": "^1.2.0",
|
|
11
|
+
"@contentstack/cli-utilities": "^1.2.0",
|
|
12
12
|
"@contentstack/management": "^1.6.1",
|
|
13
13
|
"async": "^3.2.4",
|
|
14
14
|
"chalk": "^4.1.0",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"winston": "^3.7.2"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"oclif": "^3.1.2",
|
|
24
23
|
"@oclif/test": "^1.2.7",
|
|
25
24
|
"chai": "^4.2.0",
|
|
26
25
|
"eslint": "^8.18.0",
|
|
27
|
-
"eslint-config-oclif": "^
|
|
26
|
+
"eslint-config-oclif": "^4.0.0",
|
|
28
27
|
"globby": "^10.0.2",
|
|
29
|
-
"jest": "^
|
|
28
|
+
"jest": "^29.4.2",
|
|
30
29
|
"mocha": "^10.0.0",
|
|
31
30
|
"nyc": "^15.1.0",
|
|
31
|
+
"oclif": "^3.1.2",
|
|
32
32
|
"sinon": "^15.0.1"
|
|
33
33
|
},
|
|
34
34
|
"engines": {
|
|
35
|
-
"node": ">=
|
|
35
|
+
"node": ">=14.0.0"
|
|
36
36
|
},
|
|
37
37
|
"files": [
|
|
38
38
|
"/npm-shrinkwrap.json",
|
|
@@ -57,7 +57,8 @@
|
|
|
57
57
|
"prepack": "oclif manifest && oclif readme",
|
|
58
58
|
"test": "nyc --reporter=html mocha --forbid-only \"test/**/*.test.js\"",
|
|
59
59
|
"posttest": "eslint .",
|
|
60
|
-
"version": "oclif readme && git add README.md"
|
|
60
|
+
"version": "oclif readme && git add README.md",
|
|
61
|
+
"clean": "rm -rf ./node_modules tsconfig.build.tsbuildinfo"
|
|
61
62
|
},
|
|
62
63
|
"csdxConfig": {
|
|
63
64
|
"expiredCommands": {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
const { Command
|
|
2
|
-
const { configHandler } = require('@contentstack/cli-utilities');
|
|
1
|
+
const { Command } = require('@contentstack/cli-command');
|
|
2
|
+
const { configHandler, flags } = require('@contentstack/cli-utilities');
|
|
3
3
|
const { CloneHandler } = require('../../../lib/util/clone-handler');
|
|
4
4
|
let config = require('../../../lib/util/dummyConfig.json');
|
|
5
5
|
const path = require('path');
|