Fix monorepo dependency installation and broken npm run dev #4
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
priority:P1
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
nsaspy/quasar#4
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The documented root setup is broken on PR #3.
Running:
installs only the root package because npm workspaces were removed.
scripts/dev.mjsthen runsnpx viteinsidefrontend/, which partially downloads Vite but cannot resolve the frontend's declared development dependencies such asvite,vitest/config, and@vitejs/plugin-react.Observed failure:
Found during review of PR #3.
Required changes
npm ciinstalls the monorepo.npxas an implicit package downloader in the dev runner.npm --prefix frontend run devor a restored workspace command.Acceptance criteria
npm ci && npm run devstarts the Lisp process and Vite without downloading undeclared packages.cd frontend && npm ciworkaround is required.Related PR: #3