reffy-cli 1.9.1 → 1.9.2
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 +6 -5
- package/dist/cli.js +0 -0
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -392,13 +392,14 @@ This is a navigational pointer that keeps the lineage explicit; the spec delta r
|
|
|
392
392
|
For local development of this repo:
|
|
393
393
|
|
|
394
394
|
```bash
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
395
|
+
corepack enable
|
|
396
|
+
pnpm install
|
|
397
|
+
pnpm build
|
|
398
|
+
pnpm check
|
|
399
|
+
pnpm test
|
|
399
400
|
```
|
|
400
401
|
|
|
401
|
-
`
|
|
402
|
+
`pnpm install` runs this package's `prepare` step, which builds `dist/` automatically. Use `pnpm reffy <args>` to exercise the built local CLI through `dist/cli.js`; this avoids accidentally invoking a globally installed `reffy` while working in this repo.
|
|
402
403
|
|
|
403
404
|
## Release Security
|
|
404
405
|
|
package/dist/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reffy-cli",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.2",
|
|
4
4
|
"description": "Planning system for AI assisted development.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"reffy",
|
|
@@ -30,14 +30,6 @@
|
|
|
30
30
|
"bin": {
|
|
31
31
|
"reffy": "dist/cli.js"
|
|
32
32
|
},
|
|
33
|
-
"scripts": {
|
|
34
|
-
"build": "tsc -p tsconfig.json",
|
|
35
|
-
"prepare": "npm run build",
|
|
36
|
-
"dev": "tsx watch src/cli.ts",
|
|
37
|
-
"check": "tsc --noEmit",
|
|
38
|
-
"test": "npm run build && vitest run --coverage",
|
|
39
|
-
"test:watch": "vitest"
|
|
40
|
-
},
|
|
41
33
|
"engines": {
|
|
42
34
|
"node": ">=20"
|
|
43
35
|
},
|
|
@@ -57,5 +49,13 @@
|
|
|
57
49
|
"tsx": "^4.20.5",
|
|
58
50
|
"typescript": "^5.9.2",
|
|
59
51
|
"vitest": "^3.2.4"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"build": "tsc -p tsconfig.json",
|
|
55
|
+
"reffy": "node dist/cli.js",
|
|
56
|
+
"dev": "tsx watch src/cli.ts",
|
|
57
|
+
"check": "tsc --noEmit",
|
|
58
|
+
"test": "tsc -p tsconfig.json && vitest run --coverage",
|
|
59
|
+
"test:watch": "vitest"
|
|
60
60
|
}
|
|
61
|
-
}
|
|
61
|
+
}
|