Skip to content

Commit

Permalink
v2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanoverna committed Aug 22, 2024
1 parent 9efdcf2 commit ec3014c
Show file tree
Hide file tree
Showing 12 changed files with 92 additions and 52 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"packages": [
"packages/*"
],
"version": "2.0.6"
"version": "2.0.7"
}
9 changes: 5 additions & 4 deletions packages/cli-plugin-contentful/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ Import a Contentful project into a DatoCMS project
```
USAGE
$ @datocms/cli-plugin-contentful contentful:import [--json] [--config-file <value>] [--profile <value>] [--api-token
<value>] [--log-level NONE|BASIC|BODY|BODY_AND_HEADERS] [--contentful-token <value>] [--contentful-space-id <value>]
[--contentful-environment <value>] [--autoconfirm] [--ignore-errors] [--skip-content] [--only-content-type <value>]
[--concurrency <value>]
<value>] [--log-level NONE|BASIC|BODY|BODY_AND_HEADERS] [--log-mode stdout|file|directory] [--contentful-token
<value>] [--contentful-space-id <value>] [--contentful-environment <value>] [--autoconfirm] [--ignore-errors]
[--skip-content] [--only-content-type <value>] [--concurrency <value>]
FLAGS
--api-token=<value> Specify a custom API key to access a DatoCMS project
Expand All @@ -54,6 +54,7 @@ FLAGS
--contentful-token=<value> Your Contentful project read-only API token
--ignore-errors Ignore errors encountered during import
--log-level=(NONE|BASIC|BODY|BODY_AND_HEADERS) Level of logging for performed API calls
--log-mode=(stdout|file|directory) Where logged output should be written to
--only-content-type=<value> Exclusively import the specified content types. Specify the content
types you want to import with comma separated Contentful IDs -
Example: blogPost,landingPage,author
Expand All @@ -67,7 +68,7 @@ DESCRIPTION
Import a Contentful project into a DatoCMS project
```

_See code: [lib/commands/contentful/import.js](https://github.com/datocms/cli/blob/v2.0.6/packages/cli-plugin-contentful/lib/commands/contentful/import.js)_
_See code: [lib/commands/contentful/import.js](https://github.com/datocms/cli/blob/v2.0.7/packages/cli-plugin-contentful/lib/commands/contentful/import.js)_
<!-- commandsstop -->

# Test
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-plugin-contentful/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 12 additions & 4 deletions packages/cli-plugin-contentful/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{
"name": "@datocms/cli-plugin-contentful",
"version": "2.0.6",
"version": "2.0.7",
"description": "Plugin for DatoCMS CLI to import projects from Contentful to DatoCMS",
"keywords": ["contentful", "datocms", "import"],
"keywords": [
"contentful",
"datocms",
"import"
],
"engines": {
"node": ">=12.0.0"
},
Expand All @@ -11,7 +15,11 @@
"license": "MIT",
"main": "lib/src/index.js",
"types": "lib/src/index.d.js",
"files": ["/lib", "/npm-shrinkwrap.json", "/oclif.manifest.json"],
"files": [
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"publishConfig": {
"access": "public"
},
Expand All @@ -31,7 +39,7 @@
"url": "https://github.com/datocms/cli/issues"
},
"dependencies": {
"@datocms/cli-utils": "^2.0.5",
"@datocms/cli-utils": "^2.0.7",
"@oclif/core": "^1.8.0",
"async-scheduler": "^1.4.4",
"contentful-management": "^10.6.0",
Expand Down
8 changes: 5 additions & 3 deletions packages/cli-plugin-wordpress/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ Imports a WordPress site into a DatoCMS project
```
USAGE
$ @datocms/cli-plugin-wordpress wordpress:import --wp-username <value> --wp-password <value> [--json] [--config-file
<value>] [--profile <value>] [--api-token <value>] [--log-level NONE|BASIC|BODY|BODY_AND_HEADERS] [--wp-json-api-url
<value> | --wp-url <value>] [--autoconfirm] [--ignore-errors] [--concurrency <value>]
<value>] [--profile <value>] [--api-token <value>] [--log-level NONE|BASIC|BODY|BODY_AND_HEADERS] [--log-mode
stdout|file|directory] [--wp-json-api-url <value> | --wp-url <value>] [--autoconfirm] [--ignore-errors]
[--concurrency <value>]
FLAGS
--api-token=<value> Specify a custom API key to access a DatoCMS project
Expand All @@ -47,6 +48,7 @@ FLAGS
--config-file=<value> [default: ./datocms.config.json] Specify a custom config file path
--ignore-errors Try to ignore errors encountered during import
--log-level=(NONE|BASIC|BODY|BODY_AND_HEADERS) Level of logging for performed API calls
--log-mode=(stdout|file|directory) Where logged output should be written to
--profile=<value> Use settings of profile in datocms.config.js
--wp-json-api-url=<value> The endpoint for your WordPress install (ex.
https://www.wordpress-website.com/wp-json)
Expand All @@ -62,7 +64,7 @@ DESCRIPTION
Imports a WordPress site into a DatoCMS project
```

_See code: [lib/commands/wordpress/import.js](https://github.com/datocms/cli/blob/v2.0.5/packages/cli-plugin-wordpress/lib/commands/wordpress/import.js)_
_See code: [lib/commands/wordpress/import.js](https://github.com/datocms/cli/blob/v2.0.7/packages/cli-plugin-wordpress/lib/commands/wordpress/import.js)_
<!-- commandsstop -->

# Development
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-plugin-wordpress/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 11 additions & 4 deletions packages/cli-plugin-wordpress/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@datocms/cli-plugin-wordpress",
"version": "2.0.5",
"version": "2.0.7",
"description": "DatoCMS CLI plugin to import WordPress sites",
"author": "DatoCMS <[email protected]>",
"homepage": "https://github.com/datocms/cli",
Expand All @@ -11,12 +11,16 @@
"url": "https://github.com/datocms/cli.git",
"directory": "packages/cli-plugin-wordpress"
},
"files": ["/lib", "/npm-shrinkwrap.json", "/oclif.manifest.json"],
"files": [
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@datocms/cli-utils": "^2.0.5",
"@datocms/cli-utils": "^2.0.7",
"@oclif/core": "^1.8.0",
"async-scheduler": "^1.4.4",
"enquirer": ">= 2.3.0 < 3",
Expand All @@ -39,7 +43,10 @@
"node": ">=12.0.0"
},
"bugs": "https://github.com/datocms/cli/issues",
"keywords": ["datocms", "cli"],
"keywords": [
"datocms",
"cli"
],
"types": "lib/src/index.d.ts",
"gitHead": "156eff36152666cf811463135b831818026501a0",
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-utils/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions packages/cli-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@datocms/cli-utils",
"version": "2.0.5",
"version": "2.0.7",
"description": "Utils for DatoCMS CLI",
"author": "Stefano Verna <[email protected]>",
"homepage": "https://github.com/datocms/cli",
Expand All @@ -10,7 +10,10 @@
"directories": {
"lib": "lib"
},
"files": ["lib", "src"],
"files": [
"lib",
"src"
],
"publishConfig": {
"access": "public"
},
Expand Down
Loading

0 comments on commit ec3014c

Please sign in to comment.