You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Perhaps this may help for anyone who is still confused about parcel vs. parcel-bundler
"parcel" is version 2(new) of parcel and parcel is the module that must be used.
According to the npm site, "parcel-bundler", which is version 1, is deprecated and should no longer be used.
_"This package has been deprecated
Author message:
I had similar problems.
Following on from clarification from clumsy-cranberry-1 above
You could do the following:
1- check the versions available:
npm view parcel versions
2- use the latest non-nightly version
eg.
npm i parcel@2.0.0-beta.2
Activity
DeMoorJasper commentedon Dec 6, 2018
They are identical only difference is that plugins usually rely on
parcel-bundler
, so it's better to use that one.aaronbeall commentedon Apr 24, 2019
I'm still confused why there are two identical modules. You're saying that if you install
parcel
that bad things can happen with some plugins?FDiskas commentedon Jul 9, 2019
Question should be still open :ltu:
BBlackwo commentedon Nov 6, 2019
Would be much less confusing to just have one
AshotN commentedon Jan 24, 2020
This really doesn't make sense. The documentation isn't even consistent. Github page says
parcel
the website saysparcel-bundler
mischnic commentedon Jan 24, 2020
The github page is for Parcel 2, which is only available as
parcel
. The website are the docs for version 1AshotN commentedon Jan 24, 2020
Can there be a banner that explains that the website is for V. 1
I spent a lot of time without figuring that out, it might help some other people.
I can open a separate issue if you like as it seems this one is resolved.
mischnic commentedon Jan 24, 2020
@AshotN : parcel-bundler/website#559
melissaveraherbst commentedon Aug 20, 2021
Perhaps this may help for anyone who is still confused about parcel vs. parcel-bundler
"parcel" is version 2(new) of parcel and parcel is the module that must be used.
According to the npm site, "parcel-bundler", which is version 1, is deprecated and should no longer be used.
_"This package has been deprecated
Author message:
Parcel v1 is no longer maintained. Please migrate to v2, which is published under the 'parcel' package. See https://v2.parceljs.org/getting-started/migration for details."_
Ali-Dakoumi commentedon Sep 22, 2022
Since that the docs says you should use npm i parcel, i tried it but faced a lot of problems (gyp errors kind of couldnt find file or python...)
but parcel-bundler worked for me!
Zedt commentedon Nov 11, 2022
I had similar problems.
Following on from clarification from clumsy-cranberry-1 above
You could do the following:
1- check the versions available:
npm view parcel versions
2- use the latest non-nightly version
eg.
npm i parcel@2.0.0-beta.2