@commercelayer/cli-plugin-provisioning 2.0.0-oclif3.4 → 2.0.0-oclif3.5

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/bin/run.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+
3
+ // eslint-disable-next-line unicorn/prefer-top-level-await
4
+ (async () => {
5
+ const oclif = await import('@oclif/core')
6
+ await oclif.execute({development: false, dir: __dirname})
7
+ })()
@@ -1514,5 +1514,5 @@
1514
1514
  ]
1515
1515
  }
1516
1516
  },
1517
- "version": "2.0.0-oclif3.4"
1517
+ "version": "2.0.0-oclif3.5"
1518
1518
  }
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@commercelayer/cli-plugin-provisioning",
3
3
  "description": "Commerce Layer CLI Provisioning plugin",
4
- "version": "2.0.0-oclif3.4",
4
+ "version": "2.0.0-oclif3.5",
5
5
  "author": "Pierluigi Viti <pierluigi@commercelayer.io>",
6
6
  "homepage": "https://github.com/commercelayer/commercelayer-cli-plugin-provisioning",
7
7
  "repository": "commercelayer/commercelayer-cli-plugin-provisioning",
8
8
  "bugs": "https://github.com/commercelayer/commercelayer-cli-plugin-provisioning/issues",
9
9
  "engines": {
10
- "node": ">=20.0.0"
10
+ "node": ">=20.10.0"
11
11
  },
12
12
  "files": [
13
- "/bin",
13
+ "/bin/run.*",
14
14
  "/lib",
15
15
  "/npm-shrinkwrap.json",
16
16
  "/oclif.manifest.json"
@@ -57,7 +57,7 @@
57
57
  "devDependencies": {
58
58
  "@commercelayer/cli-dev": "beta",
59
59
  "@commercelayer/eslint-config-ts": "^1.3.0",
60
- "@oclif/plugin-help": "^6.0.13",
60
+ "@oclif/plugin-help": "^6.0.14",
61
61
  "@oclif/test": "^3.2.0",
62
62
  "@semantic-release/changelog": "^6.0.3",
63
63
  "@semantic-release/git": "^10.0.1",
package/bin/dev DELETED
@@ -1,18 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- const oclif = require('@oclif/core')
4
-
5
- const path = require('path')
6
- const project = path.join(__dirname, '..', 'tsconfig.json')
7
-
8
- // In dev mode -> use ts-node and dev plugins
9
- process.env.NODE_ENV = 'development'
10
-
11
- // eslint-disable-next-line node/no-unpublished-require
12
- require('ts-node').register({project})
13
-
14
- // In dev mode, always show stack traces
15
- oclif.settings.debug = true
16
-
17
- // Start the CLI
18
- oclif.run().then(oclif.flush).catch(oclif.Errors.handle)
package/bin/dev.cmd DELETED
@@ -1,3 +0,0 @@
1
- @echo off
2
-
3
- node "%~dp0\dev" %*
package/bin/run DELETED
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- const oclif = require('@oclif/core')
4
-
5
- oclif.run().then(require('@oclif/core/flush')).catch(require('@oclif/core/handle'))