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 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
- npm run dev
132
- npm run link
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
- ## Build standalone executable
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
- npm run build:standalone
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 `npm run release`.
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
- npm run release
157
+ pnpm run release
155
158
 
156
159
  # release individually
157
- npm run release:npm
158
- npm run release:github
159
- npm run release:brew
160
+ pnpm run release:npm
161
+ pnpm run release:github
162
+ pnpm run release:brew
160
163
  ```