gt-gh 0.0.0

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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/index.js +2 -0
  3. package/package.json +26 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # gt-gh
2
+
3
+ GitHub-only stacked changes CLI compatible with Graphite-style `gt` commands.
4
+
5
+ Package name reserved. Full CLI release coming soon.
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log('gt-gh package reserved. Full CLI release coming soon.');
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "gt-gh",
3
+ "version": "0.0.0",
4
+ "description": "GitHub-only stacked changes CLI compatible with Graphite-style gt commands.",
5
+ "license": "AGPL-3.0-only",
6
+ "private": false,
7
+ "bin": {
8
+ "gt-gh": "index.js"
9
+ },
10
+ "files": [
11
+ "index.js",
12
+ "README.md"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+ssh://git@github.com/tianrendong/gt.git"
17
+ },
18
+ "keywords": [
19
+ "git",
20
+ "github",
21
+ "graphite",
22
+ "gt",
23
+ "stacked-prs",
24
+ "stacked-diffs"
25
+ ]
26
+ }