linear-github-cli 1.3.5 → 1.3.6
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 +9 -7
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -241,13 +241,15 @@ The tool waits 5 seconds for Linear sync. If the issue still isn't found:
|
|
|
241
241
|
|
|
242
242
|
```
|
|
243
243
|
lg (CLI)
|
|
244
|
-
├──
|
|
245
|
-
├──
|
|
246
|
-
│ ├──
|
|
247
|
-
│
|
|
248
|
-
|
|
249
|
-
├──
|
|
250
|
-
|
|
244
|
+
├── src/
|
|
245
|
+
│ ├── cli.ts # CLI entry point (Commander.js)
|
|
246
|
+
│ ├── commands/
|
|
247
|
+
│ │ ├── create-parent.ts # Parent issue command
|
|
248
|
+
│ │ └── create-sub.ts # Sub-issue command
|
|
249
|
+
│ ├── linear-client.ts # Linear SDK wrapper
|
|
250
|
+
│ ├── github-client.ts # GitHub CLI/API wrapper
|
|
251
|
+
│ └── input-handler.ts # Interactive prompts (Inquirer.js)
|
|
252
|
+
└── scripts/ # Helper shell scripts
|
|
251
253
|
```
|
|
252
254
|
|
|
253
255
|
## Development
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "linear-github-cli",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"description": "CLI tool for creating GitHub issues with Linear integration",
|
|
5
5
|
"main": "dist/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "tsc && chmod +x dist/cli.js dist/lgcmf.js",
|
|
13
|
-
"dev": "tsx cli.ts",
|
|
13
|
+
"dev": "tsx src/cli.ts",
|
|
14
14
|
"prepublishOnly": "npm run build"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|