@contentstack/cli-cm-import-setup 1.0.1 → 1.1.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/config/index.js +2 -0
- package/oclif.manifest.json +1 -1
- package/package.json +3 -15
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ $ npm install -g @contentstack/cli-cm-import-setup
|
|
|
47
47
|
$ csdx COMMAND
|
|
48
48
|
running command...
|
|
49
49
|
$ csdx (--version)
|
|
50
|
-
@contentstack/cli-cm-import-setup/1.0
|
|
50
|
+
@contentstack/cli-cm-import-setup/1.1.0 linux-x64 node-v22.14.0
|
|
51
51
|
$ csdx --help [COMMAND]
|
|
52
52
|
USAGE
|
|
53
53
|
$ csdx COMMAND
|
package/lib/config/index.js
CHANGED
|
@@ -9,6 +9,8 @@ const config = {
|
|
|
9
9
|
// host:'https://azure-eu-api.contentstack.com/v3',
|
|
10
10
|
// use below hosts for gcp-na region
|
|
11
11
|
// host:'https://gcp-na-api.contentstack.com',
|
|
12
|
+
// use below hosts for gcp-eu region
|
|
13
|
+
// host:'https://gcp-eu-api.contentstack.com',
|
|
12
14
|
// pass locale, only to migrate entries from that locale
|
|
13
15
|
// not passing `locale` will migrate all the locales present
|
|
14
16
|
// locales: ['fr-fr'],
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,29 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentstack/cli-cm-import-setup",
|
|
3
3
|
"description": "Contentstack CLI plugin to setup the mappers and configurations for the import command",
|
|
4
|
-
"version": "1.0
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"author": "Contentstack",
|
|
6
6
|
"bugs": "https://github.com/contentstack/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@contentstack/cli-command": "~1.3.
|
|
9
|
-
"@contentstack/cli-utilities": "~1.8.
|
|
8
|
+
"@contentstack/cli-command": "~1.3.3",
|
|
9
|
+
"@contentstack/cli-utilities": "~1.8.4",
|
|
10
10
|
"@oclif/core": "^3.27.0",
|
|
11
11
|
"big-json": "^3.2.0",
|
|
12
|
-
"bluebird": "^3.7.2",
|
|
13
12
|
"chalk": "^4.1.2",
|
|
14
|
-
"debug": "^4.4.0",
|
|
15
13
|
"fs-extra": "^11.1.1",
|
|
16
14
|
"lodash": "^4.17.21",
|
|
17
|
-
"marked": "^4.3.0",
|
|
18
15
|
"merge": "^2.1.1",
|
|
19
16
|
"mkdirp": "^1.0.4",
|
|
20
|
-
"promise-limit": "^2.7.0",
|
|
21
|
-
"tslib": "^2.8.1",
|
|
22
|
-
"uuid": "^9.0.1",
|
|
23
17
|
"winston": "^3.17.0"
|
|
24
18
|
},
|
|
25
19
|
"devDependencies": {
|
|
26
|
-
"@oclif/test": "^4.1.6",
|
|
27
20
|
"@types/big-json": "^3.2.5",
|
|
28
21
|
"@types/bluebird": "^3.5.42",
|
|
29
22
|
"@types/chai": "^4.3.20",
|
|
@@ -31,20 +24,15 @@
|
|
|
31
24
|
"@types/mkdirp": "^1.0.2",
|
|
32
25
|
"@types/mocha": "^8.2.3",
|
|
33
26
|
"@types/node": "^14.18.63",
|
|
34
|
-
"@types/sinon": "^10.0.20",
|
|
35
27
|
"@types/tar": "^6.1.13",
|
|
36
28
|
"@types/uuid": "^9.0.8",
|
|
37
29
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
38
30
|
"chai": "^4.5.0",
|
|
39
31
|
"eslint": "^8.57.1",
|
|
40
32
|
"eslint-config-oclif": "^4.0.0",
|
|
41
|
-
"globby": "^10.0.2",
|
|
42
33
|
"mocha": "^10.8.2",
|
|
43
34
|
"nyc": "^15.1.0",
|
|
44
35
|
"oclif": "^3.17.2",
|
|
45
|
-
"rimraf": "^2.7.1",
|
|
46
|
-
"sinon": "^11.1.2",
|
|
47
|
-
"tmp": "^0.2.3",
|
|
48
36
|
"ts-node": "^10.9.2",
|
|
49
37
|
"typescript": "^4.9.5"
|
|
50
38
|
},
|