@remkoj/optimizely-cms-cli 2.0.0-pre5 → 2.0.1-pre1
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 +15 -1
- package/dist/index.js +861 -285
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1 +1,15 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Optimizely CMS Command Line Toolkit
|
|
2
|
+
A collection of Command Line tools used to increase productivity when working with the Optimizely CMS from a TypeScript / JavaScript based frontend.
|
|
3
|
+
|
|
4
|
+
## Installing
|
|
5
|
+
|
|
6
|
+
## General parameters
|
|
7
|
+
All commands share these parameters that configure the frontend environment.
|
|
8
|
+
|
|
9
|
+
## Available commands
|
|
10
|
+
The following commands are available, you can always run `opti-cms --help` or `opti-cms [command] --help` to see all information for the CLI utility or command.
|
|
11
|
+
|
|
12
|
+
| Command | Description |
|
|
13
|
+
| --- | --- |
|
|
14
|
+
|`types:pull`| Read all existing content types from the Optimizely CMS and create their representation within the codebase. Use the parameters of this method to control which types will be pulled and to allow overwriting of existing files. |
|
|
15
|
+
|`types:push`| Create or overwrite the content type defintions from the codebase into Optimizely CMS, use the parameters of this method to control which types will be transferred and whether destructive changes are allowed. |
|