git-stack-cli 2.7.3 → 2.7.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/README.md +3 -8
- package/dist/js/index.js +207 -45925
- package/package.json +2 -2
- package/scripts/bun-build.ts +21 -26
- package/scripts/bun-compile.ts +15 -2
- package/scripts/core/get_define.ts +21 -0
- package/scripts/npm-prepublishOnly.ts +1 -1
- package/src/app/App.tsx +2 -0
- package/src/app/AutoUpdate.tsx +7 -3
- package/src/app/Exit.tsx +9 -0
- package/src/app/GithubApiError.tsx +12 -4
- package/src/app/HandleCtrlCSigint.tsx +10 -1
- package/src/app/Store.tsx +6 -2
- package/src/app/SyncGithub.tsx +1 -1
- package/src/command.ts +8 -1
- package/src/commands/Config.tsx +1 -1
- package/src/commands/Rebase.tsx +1 -1
- package/src/components/ErrorBoundary.tsx +1 -1
- package/src/core/GitReviseTodo.ts +1 -1
- package/src/core/cache.ts +9 -11
- package/src/core/git.ts +14 -0
- package/src/index.tsx +2 -0
package/README.md
CHANGED
|
@@ -154,21 +154,16 @@ corepack enable
|
|
|
154
154
|
git submodule update --init --recursive
|
|
155
155
|
pnpm i
|
|
156
156
|
pnpm run dev
|
|
157
|
-
pnpm link --global
|
|
158
157
|
|
|
159
|
-
|
|
160
|
-
```
|
|
161
|
-
|
|
162
|
-
Remove global install
|
|
163
|
-
|
|
164
|
-
```bash
|
|
165
|
-
pnpm remove -g git-stack-cli
|
|
158
|
+
node --enable-source-maps ./dist/js/index.js
|
|
166
159
|
```
|
|
167
160
|
|
|
168
161
|
## Build single-file executable
|
|
169
162
|
|
|
170
163
|
```bash
|
|
171
164
|
pnpm run compile
|
|
165
|
+
|
|
166
|
+
./dist/js/with-sourcemaps/git-stack-bun-darwin-arm64 --no-sync
|
|
172
167
|
```
|
|
173
168
|
|
|
174
169
|
## Publishing
|