@oclif/plugin-test-esbuild 0.4.18 → 0.4.20

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.
@@ -141,11 +141,20 @@
141
141
  "required": true
142
142
  }
143
143
  },
144
- "description": "Installs a plugin into the CLI.\nCan be installed from npm or a git url.\n\nInstallation of a user-installed plugin will override a core plugin.\n\ne.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in the CLI without the need to patch and update the whole CLI.\n",
144
+ "description": "Uses bundled npm executable to install plugins into <%= config.dataDir %>\n\nInstallation of a user-installed plugin will override a core plugin.\n\nUse the <%= config.scopedEnvVarKey('NPM_LOG_LEVEL') %> environment variable to set the npm loglevel.\nUse the <%= config.scopedEnvVarKey('NPM_REGISTRY') %> environment variable to set the npm registry.",
145
145
  "examples": [
146
- "<%= config.bin %> <%= command.id %> <%- config.pjson.oclif.examplePlugin || \"myplugin\" %> ",
147
- "<%= config.bin %> <%= command.id %> https://github.com/someuser/someplugin",
148
- "<%= config.bin %> <%= command.id %> someuser/someplugin"
146
+ {
147
+ "command": "<%= config.bin %> <%= command.id %> <%- config.pjson.oclif.examplePlugin || \"myplugin\" %> ",
148
+ "description": "Install a plugin from npm registry."
149
+ },
150
+ {
151
+ "command": "<%= config.bin %> <%= command.id %> https://github.com/someuser/someplugin",
152
+ "description": "Install a plugin from a github url."
153
+ },
154
+ {
155
+ "command": "<%= config.bin %> <%= command.id %> someuser/someplugin",
156
+ "description": "Install a plugin from a github slug."
157
+ }
149
158
  ],
150
159
  "flags": {
151
160
  "json": {
@@ -157,7 +166,7 @@
157
166
  },
158
167
  "force": {
159
168
  "char": "f",
160
- "description": "Run yarn install with force flag.",
169
+ "description": "Force npm to fetch remote resources even if a local copy exists on disk.",
161
170
  "name": "force",
162
171
  "allowNo": false,
163
172
  "type": "boolean"
@@ -177,7 +186,7 @@
177
186
  },
178
187
  "silent": {
179
188
  "char": "s",
180
- "description": "Silences yarn output.",
189
+ "description": "Silences npm output.",
181
190
  "exclusive": [
182
191
  "verbose"
183
192
  ],
@@ -187,7 +196,7 @@
187
196
  },
188
197
  "verbose": {
189
198
  "char": "v",
190
- "description": "Show verbose yarn output.",
199
+ "description": "Show verbose npm output.",
191
200
  "exclusive": [
192
201
  "silent"
193
202
  ],
@@ -203,7 +212,7 @@
203
212
  "pluginName": "@oclif/plugin-test-esbuild",
204
213
  "pluginType": "core",
205
214
  "strict": false,
206
- "usage": "plugins:install PLUGIN...",
215
+ "summary": "Installs a plugin into <%= config.bin %>.",
207
216
  "enableJsonFlag": true
208
217
  },
209
218
  "plugins:link": {
@@ -248,7 +257,6 @@
248
257
  "pluginName": "@oclif/plugin-test-esbuild",
249
258
  "pluginType": "core",
250
259
  "strict": true,
251
- "usage": "plugins:link PLUGIN",
252
260
  "enableJsonFlag": false
253
261
  },
254
262
  "plugins:reset": {
@@ -315,7 +323,6 @@
315
323
  "pluginName": "@oclif/plugin-test-esbuild",
316
324
  "pluginType": "core",
317
325
  "strict": false,
318
- "usage": "plugins:uninstall PLUGIN...",
319
326
  "enableJsonFlag": false
320
327
  },
321
328
  "plugins:update": {
@@ -467,5 +474,5 @@
467
474
  "enableJsonFlag": false
468
475
  }
469
476
  },
470
- "version": "0.4.18"
477
+ "version": "0.4.20"
471
478
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oclif/plugin-test-esbuild",
3
- "version": "0.4.18",
3
+ "version": "0.4.20",
4
4
  "description": "Bundled plugin for testing",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/plugin-test-esbuild/issues",
@@ -12,23 +12,23 @@
12
12
  },
13
13
  "dependencies": {
14
14
  "@oclif/core": "^3.26.6",
15
- "@oclif/plugin-test-esm-1": "^0.7.15",
16
- "@oclif/plugin-plugins": "^4.3.10"
15
+ "@oclif/plugin-test-esm-1": "^0.7.16",
16
+ "@oclif/plugin-plugins": "^5"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@oclif/prettier-config": "^0.2.1",
20
- "@oclif/test": "^3",
20
+ "@oclif/test": "^4",
21
21
  "@types/chai": "^4",
22
- "@types/mocha": "^10.0.0",
22
+ "@types/mocha": "^10",
23
23
  "@types/node": "^18",
24
24
  "chai": "^4",
25
- "esbuild": "^0.21.1",
25
+ "esbuild": "^0.21.3",
26
26
  "eslint": "^8.57.0",
27
27
  "eslint-config-oclif": "^5",
28
28
  "eslint-config-oclif-typescript": "^3",
29
29
  "eslint-config-prettier": "^9.1.0",
30
30
  "mocha": "^10",
31
- "oclif": "^4.10.7",
31
+ "oclif": "^4.10.11",
32
32
  "shx": "^0.3.4",
33
33
  "ts-node": "^10.9.2",
34
34
  "typescript": "^5"