willfire 0.1.33 → 0.1.35
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/dist/cli.js +0 -0
- package/dist/internal.d.ts +2 -0
- package/dist/internal.js +3 -0
- package/package.json +9 -4
package/dist/cli.js
CHANGED
|
File without changes
|
package/dist/internal.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "willfire",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.35",
|
|
4
4
|
"description": "Predict the set of CI check entries GitHub Actions will create for a pull request",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"packageManager": "pnpm@10.33.0",
|
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
".": {
|
|
24
24
|
"types": "./dist/index.d.ts",
|
|
25
25
|
"default": "./dist/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./internal": {
|
|
28
|
+
"types": "./dist/internal.d.ts",
|
|
29
|
+
"default": "./dist/internal.js"
|
|
26
30
|
}
|
|
27
31
|
},
|
|
28
32
|
"bin": {
|
|
@@ -39,10 +43,11 @@
|
|
|
39
43
|
"lint": "eslint .",
|
|
40
44
|
"predict": "tsx src/cli.ts",
|
|
41
45
|
"prepare": "pnpm build",
|
|
42
|
-
"
|
|
43
|
-
"test
|
|
46
|
+
"record-cassette": "pnpm --filter record-cassette record",
|
|
47
|
+
"test": "vitest run && pnpm --filter record-cassette test",
|
|
48
|
+
"test:coverage": "vitest run --coverage && pnpm --filter record-cassette test:coverage",
|
|
44
49
|
"test:e2e": "vitest run --config tests/e2e/vitest.config.mts",
|
|
45
|
-
"typecheck": "tsc -p tsconfig.json",
|
|
50
|
+
"typecheck": "tsc -p tsconfig.json && pnpm --filter record-cassette typecheck",
|
|
46
51
|
"verify": "tsx src/verify.ts"
|
|
47
52
|
},
|
|
48
53
|
"dependencies": {
|