vlid icon indicating copy to clipboard operation
vlid copied to clipboard

Parcel not found

Open a1300 opened this issue 4 years ago • 2 comments

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

a1300 avatar Nov 13 '20 11:11 a1300

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.

You do perhaps have a point that it should be included in the devDependencies list though.

vlucas avatar Nov 13 '20 17:11 vlucas

Yes, I would add it to the devDependencies also to fixate the parcel version

a1300 avatar Nov 14 '20 12:11 a1300