@backstage/cli-module-github 0.0.0-nightly-20260614032343 → 0.0.0-nightly-20260616032439

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/CHANGELOG.md CHANGED
@@ -1,12 +1,13 @@
1
1
  # @backstage/cli-module-github
2
2
 
3
- ## 0.0.0-nightly-20260614032343
3
+ ## 0.0.0-nightly-20260616032439
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - 696c78c: The `--help` output for commands now shows a generated usage line that lists the available flags and any positional arguments the command accepts.
8
+ - 2e6ffe6: Updated the standalone CLI executable to use the new CLI module runner.
8
9
  - Updated dependencies
9
- - @backstage/cli-node@0.3.2
10
+ - @backstage/cli-node@0.0.0-nightly-20260616032439
10
11
  - @backstage/cli-common@0.2.2
11
12
 
12
13
  ## 0.1.2
@@ -26,7 +26,7 @@ if (isLocal) {
26
26
  require('@backstage/cli-node/config/nodeTransform.cjs');
27
27
  }
28
28
 
29
- const { runCliModule } = require('@backstage/cli-node');
29
+ const { runCli } = require('@backstage/cli-node');
30
30
  const cliModule = require(isLocal ? '../src/index' : '..').default;
31
31
  const pkg = require('../package.json');
32
- runCliModule({ module: cliModule, name: pkg.name, version: pkg.version });
32
+ runCli({ modules: [cliModule], name: pkg.name, version: pkg.version });
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var name = "@backstage/cli-module-github";
6
- var version = "0.0.0-nightly-20260614032343";
6
+ var version = "0.0.0-nightly-20260616032439";
7
7
  var description = "CLI module for Backstage CLI";
8
8
  var backstage = {
9
9
  role: "cli-module"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/cli-module-github",
3
- "version": "0.0.0-nightly-20260614032343",
3
+ "version": "0.0.0-nightly-20260616032439",
4
4
  "description": "CLI module for Backstage CLI",
5
5
  "backstage": {
6
6
  "role": "cli-module"
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@backstage/cli-common": "0.2.2",
37
- "@backstage/cli-node": "0.3.2",
37
+ "@backstage/cli-node": "0.0.0-nightly-20260616032439",
38
38
  "@octokit/request": "^8.0.0",
39
39
  "chalk": "^4.0.0",
40
40
  "cleye": "^2.6.0",
@@ -45,7 +45,7 @@
45
45
  "yaml": "^2.0.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@backstage/cli": "0.0.0-nightly-20260614032343",
48
+ "@backstage/cli": "0.0.0-nightly-20260616032439",
49
49
  "@types/express": "^4.17.6",
50
50
  "@types/fs-extra": "^11.0.0"
51
51
  },