@oclif/plugin-test-cjs-1 0.5.0 → 0.5.2

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.5.0 linux-x64 node-v18.17.1
21
+ @oclif/plugin-test-cjs-1/0.5.2 linux-x64 node-v18.17.1
22
22
  $ cjs1 --help [COMMAND]
23
23
  USAGE
24
24
  $ cjs1 COMMAND
@@ -46,7 +46,7 @@ USAGE
46
46
  $ cjs1 cjs1
47
47
  ```
48
48
 
49
- _See code: [dist/commands/cjs1.ts](https://github.com/oclif/plugin-test-cjs-1/blob/v0.5.0/dist/commands/cjs1.ts)_
49
+ _See code: [dist/commands/cjs1.ts](https://github.com/oclif/plugin-test-cjs-1/blob/v0.5.2/dist/commands/cjs1.ts)_
50
50
 
51
51
  ## `cjs1 help [COMMANDS]`
52
52
 
package/bin/dev.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  // eslint-disable-next-line node/shebang
3
- (async () => {
3
+ void (async () => {
4
4
  const oclif = await import('@oclif/core')
5
- await oclif.execute({type: 'cjs', development: true, dir: __dirname})
5
+ await oclif.execute({development: true, dir: __dirname})
6
6
  })()
package/bin/run.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- (async () => {
3
+ void (async () => {
4
4
  const oclif = await import('@oclif/core')
5
- await oclif.execute({type: 'cjs', dir: __dirname})
5
+ await oclif.execute({dir: __dirname})
6
6
  })()
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.5.0",
2
+ "version": "0.5.2",
3
3
  "commands": {
4
4
  "cjs1": {
5
5
  "id": "cjs1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oclif/plugin-test-cjs-1",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "description": "Test CJS plugin",
5
5
  "author": "Salesforce",
6
6
  "bin": {