@oclif/plugin-test-esm-2 0.1.4 → 0.1.6
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 +13 -3
- package/bin/run.js +3 -1
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ $ npm install -g @oclif/plugin-test-esm-2
|
|
|
18
18
|
$ esm2 COMMAND
|
|
19
19
|
running command...
|
|
20
20
|
$ esm2 (--version)
|
|
21
|
-
@oclif/plugin-test-esm-2/0.1.
|
|
21
|
+
@oclif/plugin-test-esm-2/0.1.6 linux-x64 node-v18.17.0
|
|
22
22
|
$ esm2 --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ esm2 COMMAND
|
|
@@ -46,7 +46,7 @@ USAGE
|
|
|
46
46
|
$ esm2 esm2
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
_See code: [dist/commands/esm2.ts](https://github.com/oclif/plugin-test-esm-2/blob/v0.1.
|
|
49
|
+
_See code: [dist/commands/esm2.ts](https://github.com/oclif/plugin-test-esm-2/blob/v0.1.6/dist/commands/esm2.ts)_
|
|
50
50
|
|
|
51
51
|
## `esm2 help [COMMANDS]`
|
|
52
52
|
|
|
@@ -89,7 +89,7 @@ EXAMPLES
|
|
|
89
89
|
$ esm2 plugins
|
|
90
90
|
```
|
|
91
91
|
|
|
92
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.
|
|
92
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.9/src/commands/plugins/index.ts)_
|
|
93
93
|
|
|
94
94
|
## `esm2 plugins:install PLUGIN...`
|
|
95
95
|
|
|
@@ -154,6 +154,8 @@ EXAMPLES
|
|
|
154
154
|
$ esm2 plugins:inspect myplugin
|
|
155
155
|
```
|
|
156
156
|
|
|
157
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.9/src/commands/plugins/inspect.ts)_
|
|
158
|
+
|
|
157
159
|
## `esm2 plugins:install PLUGIN...`
|
|
158
160
|
|
|
159
161
|
Installs a plugin into the CLI.
|
|
@@ -192,6 +194,8 @@ EXAMPLES
|
|
|
192
194
|
$ esm2 plugins:install someuser/someplugin
|
|
193
195
|
```
|
|
194
196
|
|
|
197
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.9/src/commands/plugins/install.ts)_
|
|
198
|
+
|
|
195
199
|
## `esm2 plugins:link PLUGIN`
|
|
196
200
|
|
|
197
201
|
Links a plugin into the CLI for development.
|
|
@@ -219,6 +223,8 @@ EXAMPLES
|
|
|
219
223
|
$ esm2 plugins:link myplugin
|
|
220
224
|
```
|
|
221
225
|
|
|
226
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.9/src/commands/plugins/link.ts)_
|
|
227
|
+
|
|
222
228
|
## `esm2 plugins:uninstall PLUGIN...`
|
|
223
229
|
|
|
224
230
|
Removes a plugin from the CLI.
|
|
@@ -265,6 +271,8 @@ ALIASES
|
|
|
265
271
|
$ esm2 plugins remove
|
|
266
272
|
```
|
|
267
273
|
|
|
274
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.9/src/commands/plugins/uninstall.ts)_
|
|
275
|
+
|
|
268
276
|
## `esm2 plugins:uninstall PLUGIN...`
|
|
269
277
|
|
|
270
278
|
Removes a plugin from the CLI.
|
|
@@ -303,4 +311,6 @@ FLAGS
|
|
|
303
311
|
DESCRIPTION
|
|
304
312
|
Update installed plugins.
|
|
305
313
|
```
|
|
314
|
+
|
|
315
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.9/src/commands/plugins/update.ts)_
|
|
306
316
|
<!-- commandsstop -->
|
package/bin/run.js
CHANGED
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-test-esm-2",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Test ESM plugin",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@oclif/core": "^2",
|
|
21
21
|
"@oclif/plugin-help": "^5",
|
|
22
|
-
"@oclif/plugin-plugins": "^3.1.
|
|
22
|
+
"@oclif/plugin-plugins": "^3.1.9"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@oclif/test": "^2.4.2",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"eslint-config-oclif": "^4",
|
|
32
32
|
"eslint-config-oclif-typescript": "^1.0.3",
|
|
33
33
|
"mocha": "^9",
|
|
34
|
-
"oclif": "^3.11.
|
|
34
|
+
"oclif": "^3.11.2",
|
|
35
35
|
"shx": "^0.3.4",
|
|
36
36
|
"ts-node": "^10.9.1",
|
|
37
37
|
"tslib": "^2.6.1",
|