pump-kit 0.2.1 → 0.2.4
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 +12 -6
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Pump Kit
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="https://amaranth-manual-buzzard-640.mypinata.cloud/ipfs/
|
|
4
|
+
<img src="https://amaranth-manual-buzzard-640.mypinata.cloud/ipfs/bafkreif6akiu636nsc53bkexhuxoy3ddscyjepsbjdzldf3wxyl6rl4tqm" alt="Pump Kit - Solana Kit 6" width="600" />
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
@@ -177,15 +177,21 @@ MIT
|
|
|
177
177
|
|
|
178
178
|
## Release Flow
|
|
179
179
|
|
|
180
|
-
1.
|
|
181
|
-
2. Cut a release from local once your branch is ready:
|
|
180
|
+
1. Cut a release from local once your branch is ready:
|
|
182
181
|
- `bun run release:cut patch`
|
|
183
182
|
- or `bun run release:cut minor`
|
|
184
183
|
- or `bun run release:cut major`
|
|
185
184
|
- or explicit: `bun run release:cut 0.2.1`
|
|
186
|
-
|
|
187
|
-
|
|
185
|
+
2. The script runs `bun run ci`, bumps `package.json`, commits, tags, and pushes.
|
|
186
|
+
3. Tag push (`vX.Y.Z`) triggers `.github/workflows/release.yml`:
|
|
188
187
|
- runs CI
|
|
189
188
|
- builds a Bun Linux binary (`dist/bin/pump-kit`)
|
|
190
189
|
- uploads release assets (`pump-kit-linux-x64`, `.sha256`, `.tar.gz`)
|
|
191
|
-
- publishes npm package
|
|
190
|
+
- publishes npm package
|
|
191
|
+
- creates GitHub release notes from commits since the previous tag.
|
|
192
|
+
|
|
193
|
+
One-command ship flow (cut + wait for GitHub release job):
|
|
194
|
+
|
|
195
|
+
- `bun run release:ship:patch`
|
|
196
|
+
- `bun run release:ship:minor`
|
|
197
|
+
- `bun run release:ship:major`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pump-kit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -35,6 +35,14 @@
|
|
|
35
35
|
"release:cut:patch": "bun run scripts/cut-release.ts patch",
|
|
36
36
|
"release:cut:minor": "bun run scripts/cut-release.ts minor",
|
|
37
37
|
"release:cut:major": "bun run scripts/cut-release.ts major",
|
|
38
|
+
"release:one": "./scripts/release-one.sh",
|
|
39
|
+
"release:one:patch": "./scripts/release-one.sh patch",
|
|
40
|
+
"release:one:minor": "./scripts/release-one.sh minor",
|
|
41
|
+
"release:one:major": "./scripts/release-one.sh major",
|
|
42
|
+
"release:ship": "bun run scripts/ship-release.ts",
|
|
43
|
+
"release:ship:patch": "bun run scripts/ship-release.ts patch",
|
|
44
|
+
"release:ship:minor": "bun run scripts/ship-release.ts minor",
|
|
45
|
+
"release:ship:major": "bun run scripts/ship-release.ts major",
|
|
38
46
|
"release": "bun run scripts/release.ts",
|
|
39
47
|
"release:patch": "bun run scripts/release.ts patch",
|
|
40
48
|
"release:minor": "bun run scripts/release.ts minor",
|