@oclif/plugin-test-esm-2 0.4.8 → 0.4.10
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 +4 -4
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.4.
|
|
21
|
+
@oclif/plugin-test-esm-2/0.4.10 linux-x64 node-v18.17.1
|
|
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.4.
|
|
49
|
+
_See code: [dist/commands/esm2.ts](https://github.com/oclif/plugin-test-esm-2/blob/v0.4.10/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.
|
|
92
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.5.0/src/commands/plugins/index.ts)_
|
|
93
93
|
|
|
94
94
|
## `esm2 plugins:install PLUGIN...`
|
|
95
95
|
|
|
@@ -154,7 +154,7 @@ 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.
|
|
157
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.5.0/src/commands/plugins/inspect.ts)_
|
|
158
158
|
|
|
159
159
|
## `esm2 plugins:install PLUGIN...`
|
|
160
160
|
|
|
@@ -194,7 +194,7 @@ EXAMPLES
|
|
|
194
194
|
$ esm2 plugins:install someuser/someplugin
|
|
195
195
|
```
|
|
196
196
|
|
|
197
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.
|
|
197
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.5.0/src/commands/plugins/install.ts)_
|
|
198
198
|
|
|
199
199
|
## `esm2 plugins:link PLUGIN`
|
|
200
200
|
|
|
@@ -223,7 +223,7 @@ EXAMPLES
|
|
|
223
223
|
$ esm2 plugins:link myplugin
|
|
224
224
|
```
|
|
225
225
|
|
|
226
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.
|
|
226
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.5.0/src/commands/plugins/link.ts)_
|
|
227
227
|
|
|
228
228
|
## `esm2 plugins:uninstall PLUGIN...`
|
|
229
229
|
|
|
@@ -271,7 +271,7 @@ ALIASES
|
|
|
271
271
|
$ esm2 plugins remove
|
|
272
272
|
```
|
|
273
273
|
|
|
274
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.
|
|
274
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.5.0/src/commands/plugins/uninstall.ts)_
|
|
275
275
|
|
|
276
276
|
## `esm2 plugins:uninstall PLUGIN...`
|
|
277
277
|
|
|
@@ -312,5 +312,5 @@ DESCRIPTION
|
|
|
312
312
|
Update installed plugins.
|
|
313
313
|
```
|
|
314
314
|
|
|
315
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.
|
|
315
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.5.0/src/commands/plugins/update.ts)_
|
|
316
316
|
<!-- commandsstop -->
|
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.4.
|
|
3
|
+
"version": "0.4.10",
|
|
4
4
|
"description": "Test ESM 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.
|
|
20
|
+
"@oclif/core": "^3.0.0-beta.13",
|
|
21
21
|
"@oclif/plugin-help": "^5",
|
|
22
|
-
"@oclif/plugin-plugins": "^3.
|
|
22
|
+
"@oclif/plugin-plugins": "^3.5.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@oclif/test": "^2.5.1",
|
|
26
26
|
"@types/chai": "^4",
|
|
27
27
|
"@types/mocha": "^9.0.0",
|
|
28
|
-
"@types/node": "^16.18.
|
|
28
|
+
"@types/node": "^16.18.50",
|
|
29
29
|
"chai": "^4",
|
|
30
30
|
"eslint": "^7",
|
|
31
31
|
"eslint-config-oclif": "^4",
|