@punks/cli 2.0.0-beta.2 → 2.0.0-beta.3
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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -38
package/README.md
CHANGED
|
@@ -80,7 +80,7 @@ bun run release:publish
|
|
|
80
80
|
|
|
81
81
|
`bun run baseline:publish` builds the current scaffold baseline, creates or updates the `baseline/stable/<date>-<sha>` GitHub release, and uploads the baseline manifest plus tarball. Use it when scaffold data changes but the npm executable does not need a new version.
|
|
82
82
|
|
|
83
|
-
`bun run release:publish`
|
|
83
|
+
`bun run release:publish` builds the CLI, publishes a sanitized npm package from the built `dist/` output, updates the `latest` dist-tag, also updates `next` for latest releases, and pushes the matching `v<version>` git tag. Commit and push the version bump before running it; the script refuses dirty worktrees and existing tags that point at another commit. Set `NPM_TAG=beta` for beta prereleases without moving `latest`.
|
|
84
84
|
|
|
85
85
|
Before npm releases, authenticate against the public npm registry:
|
|
86
86
|
|
package/dist/index.js
CHANGED
|
@@ -52435,7 +52435,7 @@ var toolCatalog = [
|
|
|
52435
52435
|
|
|
52436
52436
|
// package.json
|
|
52437
52437
|
var name = "@punks/cli";
|
|
52438
|
-
var version = "2.0.0-beta.
|
|
52438
|
+
var version = "2.0.0-beta.3";
|
|
52439
52439
|
// src/baseline/bundled.ts
|
|
52440
52440
|
var bundledBaseline = {
|
|
52441
52441
|
summary: {
|
package/package.json
CHANGED
|
@@ -1,47 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@punks/cli",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.3",
|
|
4
4
|
"description": "Devpunks AI scaffolding CLI",
|
|
5
5
|
"bin": {
|
|
6
6
|
"devpunks": "dist/index.js",
|
|
7
7
|
"dp": "dist/index.js",
|
|
8
8
|
"punks": "dist/index.js"
|
|
9
9
|
},
|
|
10
|
-
"
|
|
11
|
-
"dist",
|
|
12
|
-
"README.md",
|
|
13
|
-
"AGENTS.md"
|
|
14
|
-
],
|
|
15
|
-
"type": "module",
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "node ./scripts/build-dist.mjs",
|
|
18
|
-
"baseline:build": "bun ./scripts/build-baseline.mjs",
|
|
19
|
-
"baseline:publish": "node ./scripts/publish-baseline.mjs",
|
|
20
|
-
"check-types": "tsc --noEmit",
|
|
21
|
-
"dev": "bun run ./src/index.ts scaffold",
|
|
22
|
-
"local": "bun run build && bun run ./dist/index.js",
|
|
23
|
-
"release:publish": "node ./scripts/publish-release.mjs",
|
|
24
|
-
"release:publish:beta": "NPM_TAG=beta node ./scripts/publish-release.mjs",
|
|
25
|
-
"sync:skills": "node ./scripts/sync-skills-repo.mjs",
|
|
26
|
-
"test": "vitest run --config vitest.config.ts"
|
|
27
|
-
},
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"@effect/cli": "catalog:",
|
|
30
|
-
"@effect/platform": "catalog:",
|
|
31
|
-
"@effect/platform-bun": "catalog:",
|
|
32
|
-
"@effect/printer": "catalog:",
|
|
33
|
-
"@effect/printer-ansi": "catalog:",
|
|
34
|
-
"@punks/contract": "workspace:*",
|
|
35
|
-
"@punks/scaffold": "workspace:*",
|
|
36
|
-
"diff": "catalog:",
|
|
37
|
-
"effect": "catalog:",
|
|
38
|
-
"react-devtools-core": "^6.1.5"
|
|
39
|
-
},
|
|
40
|
-
"devDependencies": {
|
|
41
|
-
"@effect/vitest": "catalog:",
|
|
42
|
-
"@types/node": "catalog:",
|
|
43
|
-
"typescript": "catalog:",
|
|
44
|
-
"vitest": "catalog:"
|
|
45
|
-
},
|
|
46
|
-
"packageManager": "bun@1.3.5"
|
|
10
|
+
"type": "module"
|
|
47
11
|
}
|