stackboi 0.1.2 → 0.1.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/LICENSE +2 -2
- package/dist/cli.js +5 -5
- package/package.json +25 -6
package/LICENSE
CHANGED
|
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
|
|
|
632
632
|
the "copyright" line and a pointer to where the full notice is found.
|
|
633
633
|
|
|
634
634
|
Stackboi - A CLI tool for managing stacked diffs
|
|
635
|
-
Copyright (C) 2026
|
|
635
|
+
Copyright (C) 2026 0xrohan10
|
|
636
636
|
|
|
637
637
|
This program is free software: you can redistribute it and/or modify
|
|
638
638
|
it under the terms of the GNU General Public License as published by
|
|
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
|
|
|
652
652
|
If the program does terminal interaction, make it output a short
|
|
653
653
|
notice like this when it starts in an interactive mode:
|
|
654
654
|
|
|
655
|
-
Stackboi Copyright (C) 2026
|
|
655
|
+
Stackboi Copyright (C) 2026 0xrohan10
|
|
656
656
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
657
657
|
This is free software, and you are welcome to redistribute it
|
|
658
658
|
under certain conditions; type `show c' for details.
|
package/dist/cli.js
CHANGED
|
@@ -7,11 +7,11 @@ import path from 'node:path'
|
|
|
7
7
|
const require = createRequire(import.meta.url)
|
|
8
8
|
|
|
9
9
|
const PLATFORMS = {
|
|
10
|
-
'darwin-arm64': '@
|
|
11
|
-
'darwin-x64': '@
|
|
12
|
-
'linux-x64': '@
|
|
13
|
-
'linux-arm64': '@
|
|
14
|
-
'win32-x64': '@
|
|
10
|
+
'darwin-arm64': '@0xrohan10/stackboi-darwin-arm64',
|
|
11
|
+
'darwin-x64': '@0xrohan10/stackboi-darwin-x64',
|
|
12
|
+
'linux-x64': '@0xrohan10/stackboi-linux-x64',
|
|
13
|
+
'linux-arm64': '@0xrohan10/stackboi-linux-arm64',
|
|
14
|
+
'win32-x64': '@0xrohan10/stackboi-win32-x64',
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
function getPlatformPackage() {
|
package/package.json
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stackboi",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "A stacked branch workflow tool",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"cli",
|
|
7
|
+
"git",
|
|
8
|
+
"stacked-branches",
|
|
9
|
+
"workflow"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/0xrohan10/stackboi#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/0xrohan10/stackboi/issues"
|
|
14
|
+
},
|
|
15
|
+
"license": "GPL-3.0",
|
|
16
|
+
"author": "0xrohan10",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/0xrohan10/stackboi.git"
|
|
20
|
+
},
|
|
5
21
|
"bin": {
|
|
6
22
|
"sb": "dist/cli.js"
|
|
7
23
|
},
|
|
@@ -42,10 +58,13 @@
|
|
|
42
58
|
"typescript": "^5"
|
|
43
59
|
},
|
|
44
60
|
"optionalDependencies": {
|
|
45
|
-
"@
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
48
|
-
"@
|
|
49
|
-
"@
|
|
61
|
+
"@0xrohan10/stackboi-darwin-arm64": "0.1.6",
|
|
62
|
+
"@0xrohan10/stackboi-darwin-x64": "0.1.6",
|
|
63
|
+
"@0xrohan10/stackboi-linux-arm64": "0.1.6",
|
|
64
|
+
"@0xrohan10/stackboi-linux-x64": "0.1.6",
|
|
65
|
+
"@0xrohan10/stackboi-win32-x64": "0.1.6"
|
|
66
|
+
},
|
|
67
|
+
"engines": {
|
|
68
|
+
"node": ">=18"
|
|
50
69
|
}
|
|
51
70
|
}
|