@oclif/plugin-test-cjs-2 0.4.0 → 0.4.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-2
18
18
  $ cjs2 COMMAND
19
19
  running command...
20
20
  $ cjs2 (--version)
21
- @oclif/plugin-test-cjs-2/0.4.0 linux-x64 node-v18.17.0
21
+ @oclif/plugin-test-cjs-2/0.4.2 linux-x64 node-v18.17.0
22
22
  $ cjs2 --help [COMMAND]
23
23
  USAGE
24
24
  $ cjs2 COMMAND
@@ -46,7 +46,7 @@ USAGE
46
46
  $ cjs2 cjs2
47
47
  ```
48
48
 
49
- _See code: [dist/commands/cjs2.ts](https://github.com/oclif/plugin-test-cjs-2/blob/v0.4.0/dist/commands/cjs2.ts)_
49
+ _See code: [dist/commands/cjs2.ts](https://github.com/oclif/plugin-test-cjs-2/blob/v0.4.2/dist/commands/cjs2.ts)_
50
50
 
51
51
  ## `cjs2 help [COMMANDS]`
52
52
 
@@ -66,7 +66,7 @@ DESCRIPTION
66
66
  Display help for cjs2.
67
67
  ```
68
68
 
69
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.16/src/commands/help.ts)_
69
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.17/src/commands/help.ts)_
70
70
 
71
71
  ## `cjs2 plugins`
72
72
 
package/bin/dev.cmd CHANGED
@@ -1,3 +1,3 @@
1
1
  @echo off
2
2
 
3
- node "%~dp0\dev" %*
3
+ node --loader ts-node/esm --no-warnings=ExperimentalWarning "%~dp0\dev" %*
package/bin/dev.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env -S node --loader ts-node/esm --no-warnings=ExperimentalWarning
2
2
  // eslint-disable-next-line node/shebang
3
3
  (async () => {
4
4
  const oclif = await import('@oclif/core')
package/bin/run.cmd CHANGED
@@ -1,3 +1,3 @@
1
1
  @echo off
2
2
 
3
- node "%~dp0\run" %*
3
+ node --loader ts-node/esm --no-warnings=ExperimentalWarning "%~dp0\run" %*
package/bin/run.js CHANGED
@@ -1,4 +1,5 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env -S node --loader ts-node/esm --no-warnings=ExperimentalWarning
2
+ // eslint-disable-next-line node/shebang
2
3
  (async () => {
3
4
  const oclif = await import('@oclif/core')
4
5
  await oclif.execute({type: 'cjs', dir: __dirname})
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.4.0",
2
+ "version": "0.4.2",
3
3
  "commands": {
4
4
  "cjs2": {
5
5
  "id": "cjs2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oclif/plugin-test-cjs-2",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "Test CJS plugin",
5
5
  "author": "Salesforce",
6
6
  "bin": {
@@ -34,7 +34,7 @@
34
34
  "oclif": "^3.11.3",
35
35
  "shx": "^0.3.4",
36
36
  "ts-node": "^10.9.1",
37
- "tslib": "^2.6.1",
37
+ "tslib": "^2.6.2",
38
38
  "typescript": "^4.9.5"
39
39
  },
40
40
  "oclif": {