@contentstack/cli 1.0.0 → 1.0.1
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 +2 -23
- package/oclif.manifest.json +1 -1
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli
|
|
|
18
18
|
$ csdx COMMAND
|
|
19
19
|
running command...
|
|
20
20
|
$ csdx (-v|--version|version)
|
|
21
|
-
@contentstack/cli/1.0.
|
|
21
|
+
@contentstack/cli/1.0.1 linux-x64 node-v16.15.1
|
|
22
22
|
$ csdx --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ csdx COMMAND
|
|
@@ -60,7 +60,6 @@ USAGE
|
|
|
60
60
|
* [`csdx csdx cm:stacks:unpublish [-a <value>] [-e <value>] [-c <value>] [-y] [--locale <value>] [--branch <value>] [--retry-failed <value>] [--bulk-unpublish <value>] [--content-type <value>] [--delivery-token <value>] [--only-assets] [--only-entries]`](#csdx-csdx-cmstacksunpublish--a-value--e-value--c-value--y---locale-value---branch-value---retry-failed-value---bulk-unpublish-value---content-type-value---delivery-token-value---only-assets---only-entries)
|
|
61
61
|
* [`csdx config:get:region`](#csdx-configgetregion)
|
|
62
62
|
* [`csdx config:set:region [REGION]`](#csdx-configsetregion-region)
|
|
63
|
-
* [`csdx help [COMMAND]`](#csdx-help-command)
|
|
64
63
|
* [`csdx plugins`](#csdx-plugins)
|
|
65
64
|
* [`csdx plugins:inspect PLUGIN...`](#csdx-pluginsinspect-plugin)
|
|
66
65
|
* [`csdx plugins:install PLUGIN...`](#csdx-pluginsinstall-plugin)
|
|
@@ -558,7 +557,7 @@ EXAMPLES
|
|
|
558
557
|
$ csdx cm:entries:migrate-html-rte --alias alias --content-type global_field_uid --global-field --html-path html-path --json-path json-path
|
|
559
558
|
```
|
|
560
559
|
|
|
561
|
-
_See code: [@contentstack/cli-cm-migrate-rte](https://github.com/contentstack/cli/blob/v1.1.
|
|
560
|
+
_See code: [@contentstack/cli-cm-migrate-rte](https://github.com/contentstack/cli/blob/v1.1.1/src/commands/cm/entries/migrate-html-rte.js)_
|
|
562
561
|
|
|
563
562
|
## `csdx cm:entries:publish [-a <value>] [--retry-failed <value>] [--bulk-publish <value>] [--publish-all-content-types] [--content-types <value>] [--locales <value>] [-e <value>] [-c <value>] [-y] [--branch <value>] [--delivery-token <value>] [--source-env <value>]`
|
|
564
563
|
|
|
@@ -1532,26 +1531,6 @@ EXAMPLES
|
|
|
1532
1531
|
|
|
1533
1532
|
_See code: [@contentstack/cli-config](https://github.com/contentstack/cli/blob/v1.0.0/src/commands/config/set/region.ts)_
|
|
1534
1533
|
|
|
1535
|
-
## `csdx help [COMMAND]`
|
|
1536
|
-
|
|
1537
|
-
display help for csdx
|
|
1538
|
-
|
|
1539
|
-
```
|
|
1540
|
-
USAGE
|
|
1541
|
-
$ csdx help [COMMAND] [--all]
|
|
1542
|
-
|
|
1543
|
-
ARGUMENTS
|
|
1544
|
-
COMMAND command to show help for
|
|
1545
|
-
|
|
1546
|
-
FLAGS
|
|
1547
|
-
--all see all commands in CLI
|
|
1548
|
-
|
|
1549
|
-
DESCRIPTION
|
|
1550
|
-
display help for csdx
|
|
1551
|
-
```
|
|
1552
|
-
|
|
1553
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.18/src/commands/help.ts)_
|
|
1554
|
-
|
|
1555
1534
|
## `csdx plugins`
|
|
1556
1535
|
|
|
1557
1536
|
List installed plugins.
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.0.
|
|
1
|
+
{"version":"1.0.1","commands":{}}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentstack/cli",
|
|
3
3
|
"description": "Command-line tool (CLI) to interact with Contentstack",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"author": "Contentstack",
|
|
6
6
|
"bin": {
|
|
7
7
|
"csdx": "./bin/run"
|
|
@@ -120,7 +120,6 @@
|
|
|
120
120
|
"commands": "./lib/commands",
|
|
121
121
|
"bin": "csdx",
|
|
122
122
|
"plugins": [
|
|
123
|
-
"@oclif/plugin-help",
|
|
124
123
|
"@oclif/plugin-not-found",
|
|
125
124
|
"@oclif/plugin-plugins",
|
|
126
125
|
"@contentstack/cli-config",
|
|
@@ -152,4 +151,4 @@
|
|
|
152
151
|
"pre-commit": "npm run lint"
|
|
153
152
|
}
|
|
154
153
|
}
|
|
155
|
-
}
|
|
154
|
+
}
|