Closed karkir0003 closed 9 months ago
Hello @karkir0003! Thank you for submitting the 🐞Bug Request Form. We appreciate your contribution. :wave:
We will look into it and provide a response as soon as possible.
To work on this bug request, you can follow these branch setup instructions:
Checkout the main branch:
git checkout nextjs
Pull the latest changes from the remote main branch:
git pull origin nextjs
Create a new branch specific to this bug request using the issue number:
git checkout -b bug-1117
Feel free to make the necessary changes in this branch and submit a pull request when you're ready.
Best regards, Deep Learning Playground (DLP) Team
Steps on how to test your changes:
yarn.lock
file from frontend/
, please run dlp-cli frontend start
and verify that localhost:3000
renders the app. You will also need to run dlp-cli backend start
in a separate terminal window to load up the backendCompleted in a previous PR
Operating system
N/A
Bug description
Context DLP transitioned from
yarn
topnpm
as the package manager for frontend dependencies. However, in thefrontend/
directory of the project, theyarn.lock
file still persists. We don't require this file as apnpm-lock.yaml
file is generated frompnpm
.Solution:
yarn.lock
file fromfrontend/
directory/folder.Steps to reproduce
Examine the
frontend/
directory and check that theyarn.lock
file is there