git-stack-cli 1.15.1 → 2.0.0-beta
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 +15 -12
- package/dist/js/index.js +45709 -0
- package/package.json +17 -24
- package/scripts/bun-build.ts +109 -0
- package/scripts/bun-compile.ts +79 -0
- package/scripts/npm-prepublishOnly.ts +1 -1
- package/scripts/release-brew.ts +26 -48
- package/scripts/release-github.ts +21 -9
- package/scripts/release-npm.ts +8 -11
- package/src/core/GitReviseTodo.ts +6 -4
- package/src/index.tsx +4 -0
- package/src/types/global.d.ts +0 -1
- package/tsconfig.json +1 -1
- package/dist/cjs/index.cjs +0 -38528
- package/rollup.config.js +0 -54
- package/scripts/build-standalone.ts +0 -73
- package/scripts/link.ts +0 -14
package/README.md
CHANGED
|
@@ -128,33 +128,36 @@ Ensure `node --version` is the same across both projects you are using to test t
|
|
|
128
128
|
```bash
|
|
129
129
|
git submodule update --init --recursive
|
|
130
130
|
npm i
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
# navigate to project to test within
|
|
135
|
-
npm unlink git-stack-cli && npm link git-stack-cli
|
|
131
|
+
pnpm run dev
|
|
132
|
+
pnpm link --global
|
|
136
133
|
|
|
137
134
|
git stack --verbose
|
|
138
135
|
```
|
|
139
136
|
|
|
140
|
-
|
|
137
|
+
Remove global install
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
pnpm remove -g git-stack-cli
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
## Build single-file executable
|
|
141
144
|
|
|
142
145
|
```bash
|
|
143
|
-
|
|
146
|
+
pnpm run compile
|
|
144
147
|
```
|
|
145
148
|
|
|
146
149
|
## Publishing
|
|
147
150
|
|
|
148
151
|
> [!IMPORTANT]
|
|
149
152
|
>
|
|
150
|
-
> **You must update the `version` in `package.json` before running `
|
|
153
|
+
> **You must update the `version` in `package.json` before running `pnpm run release`.
|
|
151
154
|
> DO NOT use `npm version` or commit the change, the release scripts handle git tags etc.**
|
|
152
155
|
|
|
153
156
|
```bash
|
|
154
|
-
|
|
157
|
+
pnpm run release
|
|
155
158
|
|
|
156
159
|
# release individually
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
+
pnpm run release:npm
|
|
161
|
+
pnpm run release:github
|
|
162
|
+
pnpm run release:brew
|
|
160
163
|
```
|