@oclif/plugin-test-cjs-1 0.6.5 → 0.6.7

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 CHANGED
@@ -18,7 +18,7 @@ $ npm install -g @oclif/plugin-test-cjs-1
18
18
  $ cjs1 COMMAND
19
19
  running command...
20
20
  $ cjs1 (--version)
21
- @oclif/plugin-test-cjs-1/0.6.5 linux-x64 node-v18.18.0
21
+ @oclif/plugin-test-cjs-1/0.6.7 linux-x64 node-v20.9.0
22
22
  $ cjs1 --help [COMMAND]
23
23
  USAGE
24
24
  $ cjs1 COMMAND
@@ -44,18 +44,15 @@ USAGE
44
44
  ```
45
45
  USAGE
46
46
  $ cjs1 cjs1 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG] [--optionalString <value>] [--defaultString
47
- <value>] [--defaultFnString <value>] [--json]
47
+ <value>] [--defaultFnString <value>]
48
48
 
49
49
  FLAGS
50
50
  --defaultFnString=<value> [default: async fn default]
51
51
  --defaultString=<value> [default: simple string default]
52
52
  --optionalString=<value>
53
-
54
- GLOBAL FLAGS
55
- --json Format output as json.
56
53
  ```
57
54
 
58
- _See code: [src/commands/cjs1.ts](https://github.com/oclif/plugin-test-cjs-1/blob/v0.6.5/src/commands/cjs1.ts)_
55
+ _See code: [src/commands/cjs1.ts](https://github.com/oclif/plugin-test-cjs-1/blob/v0.6.7/src/commands/cjs1.ts)_
59
56
 
60
57
  ## `cjs1 help [COMMANDS]`
61
58
 
@@ -98,7 +95,7 @@ EXAMPLES
98
95
  $ cjs1 plugins
99
96
  ```
100
97
 
101
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.9.1/src/commands/plugins/index.ts)_
98
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.9.3/src/commands/plugins/index.ts)_
102
99
 
103
100
  ## `cjs1 plugins:install PLUGIN...`
104
101
 
@@ -163,7 +160,7 @@ EXAMPLES
163
160
  $ cjs1 plugins:inspect myplugin
164
161
  ```
165
162
 
166
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.9.1/src/commands/plugins/inspect.ts)_
163
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.9.3/src/commands/plugins/inspect.ts)_
167
164
 
168
165
  ## `cjs1 plugins:install PLUGIN...`
169
166
 
@@ -203,7 +200,7 @@ EXAMPLES
203
200
  $ cjs1 plugins:install someuser/someplugin
204
201
  ```
205
202
 
206
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.9.1/src/commands/plugins/install.ts)_
203
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.9.3/src/commands/plugins/install.ts)_
207
204
 
208
205
  ## `cjs1 plugins:link PLUGIN`
209
206
 
@@ -233,7 +230,7 @@ EXAMPLES
233
230
  $ cjs1 plugins:link myplugin
234
231
  ```
235
232
 
236
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.9.1/src/commands/plugins/link.ts)_
233
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.9.3/src/commands/plugins/link.ts)_
237
234
 
238
235
  ## `cjs1 plugins:uninstall PLUGIN...`
239
236
 
@@ -281,7 +278,7 @@ ALIASES
281
278
  $ cjs1 plugins remove
282
279
  ```
283
280
 
284
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.9.1/src/commands/plugins/uninstall.ts)_
281
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.9.3/src/commands/plugins/uninstall.ts)_
285
282
 
286
283
  ## `cjs1 plugins:uninstall PLUGIN...`
287
284
 
@@ -322,5 +319,5 @@ DESCRIPTION
322
319
  Update installed plugins.
323
320
  ```
324
321
 
325
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.9.1/src/commands/plugins/update.ts)_
322
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.9.3/src/commands/plugins/update.ts)_
326
323
  <!-- commandsstop -->
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.6.5",
2
+ "version": "0.6.7",
3
3
  "commands": {
4
4
  "cjs1": {
5
5
  "id": "cjs1",
@@ -25,13 +25,6 @@
25
25
  "type": "option",
26
26
  "multiple": false,
27
27
  "default": "async fn default"
28
- },
29
- "json": {
30
- "name": "json",
31
- "type": "boolean",
32
- "description": "Format output as json.",
33
- "helpGroup": "GLOBAL",
34
- "allowNo": false
35
28
  }
36
29
  },
37
30
  "args": {
@@ -46,7 +39,8 @@
46
39
  "name": "defaultFnArg",
47
40
  "default": "async fn default"
48
41
  }
49
- }
42
+ },
43
+ "enableJsonFlag": true
50
44
  }
51
45
  }
52
46
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oclif/plugin-test-cjs-1",
3
- "version": "0.6.5",
3
+ "version": "0.6.7",
4
4
  "description": "Test CJS plugin",
5
5
  "author": "Salesforce",
6
6
  "bin": {
@@ -17,15 +17,15 @@
17
17
  "/oclif.manifest.json"
18
18
  ],
19
19
  "dependencies": {
20
- "@oclif/core": "^3.0.0-beta.13",
20
+ "@oclif/core": "^3.9.1",
21
21
  "@oclif/plugin-help": "^5",
22
- "@oclif/plugin-plugins": "^3.9.1"
22
+ "@oclif/plugin-plugins": "^3.9.3"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@oclif/test": "^2.5.6",
26
26
  "@types/chai": "^4",
27
27
  "@types/mocha": "^9.0.0",
28
- "@types/node": "^16.18.58",
28
+ "@types/node": "^16.18.59",
29
29
  "chai": "^4",
30
30
  "eslint": "^7",
31
31
  "eslint-config-oclif": "^4",