-
Notifications
You must be signed in to change notification settings - Fork 0
add package.json #41
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?
add package.json #41
Changes from 3 commits
a52c2c1
0141c7a
812421b
93c8304
e1e96ce
511ed6c
4831678
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. Removed
|
||
| } | ||


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 while test files still exist
Medium Severity
The
"test": "vitest run"script was removed and replaced only with apostinstallscript. The repo still hastest/math.test.tsimporting fromvitest, sonpm testno longer works. The canary script could have been added alongside the existing test script rather than replacing it.Reviewed by Cursor Bugbot for commit 812421b. Configure here.