I think this is the right discussion #54420
-
Select Topic AreaShow & Tell Select Feature Area
BodyI am trying to copy a portfolio setup so i can make adjustments in order to personalize it. I am using visual studio 2022. I figured out how to do 90% of it, but when i go to 'build it', I get this Port "1234" could not be used @parcel/package-manager: Could not find module "@parcel/transformer-sass" satisfying 2.8.2. C:\Users\bvern\simplefolio\package.json:23:5 Im new at this, and ive had to figure out alot of the codes. I just dont know what im missing. I went to discord with this first and no response. thanks in advance Guidelines |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
FYI this is supposed to be for discussions about issues and projects, not raising an issue you have 🙂 But, to answer your question: This repo, right? Yeah, I was able to replicate the error by following their steps (running But from a fresh clone, by not following those instructions and just doing the following, it worked fine for me locally. git clone ...
npm install
npm start # that's it!Try just that and see if it works. I'd also recommend raising an issue with the author of those docs letting them know that their instructions break in some environments. To be honest, that's the first time I've encountered a "getting started" project that had instructions for fixing their dependencies like that. Usually it's nothing more than clone, |
Beta Was this translation helpful? Give feedback.
-
|
Thank You. Pretty sure the neighbors heard the victory yell! |
Beta Was this translation helpful? Give feedback.
FYI this is supposed to be for discussions about issues and projects, not raising an issue you have 🙂
See https://docs.github.com/en/issues/planning-and-tracking-with-projects/learning-about-projects/about-projects
But, to answer your question:
This repo, right?
Yeah, I was able to replicate the error by following their steps (running
npm audit fixand manually installing@parcel/transformer-sassseparately).But from a fresh clone, by not following those instructions and just doing the following, it worked fine for me locally.
git clone ... npm install npm start # that's it!Try just that and see if it works.
I'd also recommend raising an issue with the author of those docs letting them…