@contentstack/cli-audit 1.7.0 → 1.7.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 +8 -8
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ $ npm install -g @contentstack/cli-audit
|
|
|
19
19
|
$ csdx COMMAND
|
|
20
20
|
running command...
|
|
21
21
|
$ csdx (--version|-v)
|
|
22
|
-
@contentstack/cli-audit/1.7.
|
|
22
|
+
@contentstack/cli-audit/1.7.1 linux-x64 node-v18.20.4
|
|
23
23
|
$ csdx --help [COMMAND]
|
|
24
24
|
USAGE
|
|
25
25
|
$ csdx COMMAND
|
|
@@ -269,7 +269,7 @@ EXAMPLES
|
|
|
269
269
|
$ csdx plugins
|
|
270
270
|
```
|
|
271
271
|
|
|
272
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
272
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.9/src/commands/plugins/index.ts)_
|
|
273
273
|
|
|
274
274
|
## `csdx plugins:add PLUGIN`
|
|
275
275
|
|
|
@@ -343,7 +343,7 @@ EXAMPLES
|
|
|
343
343
|
$ csdx plugins:inspect myplugin
|
|
344
344
|
```
|
|
345
345
|
|
|
346
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
346
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.9/src/commands/plugins/inspect.ts)_
|
|
347
347
|
|
|
348
348
|
## `csdx plugins:install PLUGIN`
|
|
349
349
|
|
|
@@ -392,7 +392,7 @@ EXAMPLES
|
|
|
392
392
|
$ csdx plugins:install someuser/someplugin
|
|
393
393
|
```
|
|
394
394
|
|
|
395
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
395
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.9/src/commands/plugins/install.ts)_
|
|
396
396
|
|
|
397
397
|
## `csdx plugins:link PATH`
|
|
398
398
|
|
|
@@ -422,7 +422,7 @@ EXAMPLES
|
|
|
422
422
|
$ csdx plugins:link myplugin
|
|
423
423
|
```
|
|
424
424
|
|
|
425
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
425
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.9/src/commands/plugins/link.ts)_
|
|
426
426
|
|
|
427
427
|
## `csdx plugins:remove [PLUGIN]`
|
|
428
428
|
|
|
@@ -463,7 +463,7 @@ FLAGS
|
|
|
463
463
|
--reinstall Reinstall all plugins after uninstalling.
|
|
464
464
|
```
|
|
465
465
|
|
|
466
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
466
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.9/src/commands/plugins/reset.ts)_
|
|
467
467
|
|
|
468
468
|
## `csdx plugins:uninstall [PLUGIN]`
|
|
469
469
|
|
|
@@ -491,7 +491,7 @@ EXAMPLES
|
|
|
491
491
|
$ csdx plugins:uninstall myplugin
|
|
492
492
|
```
|
|
493
493
|
|
|
494
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
494
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.9/src/commands/plugins/uninstall.ts)_
|
|
495
495
|
|
|
496
496
|
## `csdx plugins:unlink [PLUGIN]`
|
|
497
497
|
|
|
@@ -535,5 +535,5 @@ DESCRIPTION
|
|
|
535
535
|
Update installed plugins.
|
|
536
536
|
```
|
|
537
537
|
|
|
538
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.
|
|
538
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.9/src/commands/plugins/update.ts)_
|
|
539
539
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentstack/cli-audit",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"description": "Contentstack audit plugin",
|
|
5
5
|
"author": "Contentstack CLI",
|
|
6
6
|
"homepage": "https://github.com/contentstack/cli",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"nyc": "^15.1.0",
|
|
46
46
|
"oclif": "^3",
|
|
47
47
|
"shx": "^0.3.4",
|
|
48
|
-
"sinon": "^
|
|
48
|
+
"sinon": "^19.0.0",
|
|
49
49
|
"ts-jest": "^29.1.1",
|
|
50
50
|
"ts-node": "^10.9.1",
|
|
51
51
|
"tslib": "^2.5.3",
|