We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Reproduction
# clone git clone https://github.com/vlucas/vlid # cd cd vlid # install dependencies npm install # build npm run build # -> sh: 1: parcel: not found
The text was updated successfully, but these errors were encountered:
Parcel is the bundler, which in this case was installed globally. You should not need it unless you are building the package for release.
You can fix this with npm i -g parcel-bundler.
npm i -g parcel-bundler
You do perhaps have a point that it should be included in the devDependencies list though.
devDependencies
Sorry, something went wrong.
Yes, I would add it to the devDependencies also to fixate the parcel version
parcel
No branches or pull requests
Reproduction
The text was updated successfully, but these errors were encountered: