Closed as not planned
Closed as not planned
Description
Most appropriate sub-area of p5.js?
- Accessibility
- Color
- Core/Environment/Rendering
- Data
- DOM
- Events
- Image
- IO
- Math
- Typography
- Utilities
- WebGL
- Build process
- Unit testing
- Internationalization
- Friendly errors
- Other (specify if possible)
p5.js version
Latest from main branch as of April 2025
Web browser and version
Chrome 123.0.6312.107
Operating system
Win 11
Steps to reproduce this
Steps:
- Clone the repository:
git clone https://github.com/processing/p5.js
- Run
npm install
in the root directory - Observe the node compatibility or package conflict errors due to
package-lock.json
Expected:
Project dependencies should install cleanly with npm install
.
Actual:
npm install
fails due to mismatched or outdated lockfile dependencies, likely caused by package-lock.json
being committed.
Suggested Fix:
Consider removing the package-lock.json
file from the repository to prevent version conflicts during development setup. This will help contributors install dependencies cleanly, especially when Node versions vary.