-
Notifications
You must be signed in to change notification settings - Fork 2
Convert to npm #21
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: master
Are you sure you want to change the base?
Convert to npm #21
Changes from all commits
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 |
|---|---|---|
|
|
@@ -10,7 +10,6 @@ | |
| *.tgz | ||
| /node_modules/ | ||
| /npm-debug.log | ||
| /package-lock.json | ||
| /yarn-error.log | ||
|
|
||
| # Editors: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| legacy-peer-deps=true | ||
| ignore-scripts=true |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ language: node_js | |
| node_js: | ||
| - "12" | ||
| install: | ||
| - yarn install --frozen-lockfile | ||
| - npm ci | ||
|
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. 🔒 Agentic Security Review Switching CI from Yarn with Impact: A compromised or malicious package in the lockfile can run arbitrary commands in CI before build/test steps, which can tamper outputs or exfiltrate CI-accessible secrets. |
||
| script: | ||
| - yarn lint | ||
| - yarn prepare | ||
| - npm run lint | ||
| - npm run prepare | ||
This file was deleted.
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.
Travis Node twelve breaks npm ci
High Severity
Travis still targets Node 12, whose bundled npm cannot install from a
package-lock.jsonwithlockfileVersion3. The install step now usesnpm ci, and the lockfile is no longer gitignored, so CI is likely to fail on the install phase.Additional Locations (1)
.gitignore#L8-L13Reviewed by Cursor Bugbot for commit 0bed030. Configure here.