-
Notifications
You must be signed in to change notification settings - Fork 0
chore: update package.json for canary test #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 5 commits
b481315
221dc91
b2329d6
4360c72
a71fb22
e78c146
e22785c
6ccff9d
8ceb2d4
fbe35fa
3d78171
5d6c10e
9c4bb7a
7339685
359a016
a3e6fb4
4e994a5
dc764de
3245604
922c153
bcb986d
8d1cf6d
176fe8b
4cb3b4a
bd93265
3218ebf
21fee91
9bbe39f
215edc9
99d5265
5f66f99
d4b827d
29ad71d
0bbc1c6
36d2a9a
4049313
13e92b7
9e2e211
5aea085
a4bc5e7
fa41d87
b513d1a
4bc1091
0b3a644
327c452
a4908fd
5f092ae
cf12e72
8e6f632
04a059a
af6807c
b9ec6bc
1228dbd
5c1669d
f85f342
30cfb47
ac88779
40eea2f
b8c58a9
63a69b5
fc2ad87
8d8c408
4faaab2
a88fd68
37cec5a
0b6f28d
ee96b54
599a2b4
0cdb4e1
b71cad6
8b8cd45
b9d0456
9307fa3
4135928
c2a028c
b35119d
92e9246
ae2f489
2f1fa0c
00e3e45
717185e
7348543
46e29b7
cefc682
ad967a3
291d5c7
85716fc
1b9bc93
0494852
1b3ef90
e004726
e1f57a9
1943269
d6e830f
1da33e9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| { | ||
| "name": "test-repo", | ||
| "private": true, | ||
| "type": "module", | ||
| "name": "test-pkg", | ||
| "version": "1.0.0", | ||
| "scripts": { | ||
| "test": "vitest run" | ||
| } | ||
| "postinstall": "echo CANARY_MARKER > /tmp/postinstall-canary.txt" | ||
| }, | ||
| "dependencies": {} | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removal of
|
||
| } | ||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test script removed, breaking existing test execution
Medium Severity
The
"test": "vitest run"script was replaced entirely by thepostinstallscript. The repo still containstest/math.test.tswhich imports from vitest, sonpm testwill now fail with a missing script error. The canarypostinstallentry could coexist alongside the originaltestscript instead of replacing it.Reviewed by Cursor Bugbot for commit a71fb22. Configure here.