jonasschmedtmann / advanced-css-course

Starter files, final projects and FAQ for my Advanced CSS course
https://www.udemy.com/advanced-css-and-sass/?couponCode=GITHUB4
4.58k stars 5.25k forks source link

npm install fail -> update devDependencies to latest versions fix the problem #107

Open yehudaaa opened 1 year ago

yehudaaa commented 1 year ago

Hi, I tried to run Trillo project, starter version, and when I tried to run in terminal npm install it failed. I updated the devDependencies in packages.json so the versions of the npms will be update to the latest versions and it fixed the problem. Probably an old version of at least one of the npms caused the error..

old: "devDependencies": { "autoprefixer": "^7.1.4", "concat": "^1.0.3", "node-sass": "^4.5.3", "npm-run-all": "^4.1.1", "postcss-cli": "^4.1.1" }

new: (latest versions from npmjs.com): "devDependencies": { "autoprefixer": "^10.4.13", "concat": "^1.0.3", "node-sass": "^8.0.0", "npm-run-all": "^4.1.5", "postcss-cli": "^10.1.0" }

jonasschmedtmann commented 1 year ago

Hey there,

This is an automatic reply. I know no one likes to get these, but I get an incredible amount of email, and I'd rather spend my time doing what I do best: working on bringing you the best courses I possibly can 😎

So the following points should reply to 90% of emails I get:

[1] FOR STUDENTS

👉 Do you have a problem with one of my courses? Please post it in the Q&A section, that's where all problems will get solved 😃 👉 Are you looking for career advice/next steps? Again, the course Q&A is the place to go. There, everyone can benefit from replies. 👉 Can't find your certificate? Please see this articlehttps://support.udemy.com/hc/en-us/articles/229603868-How-to-Download-Your-Certificate-of-Completion-on-a-Browser-. 👉 Are you looking for an e-book? The e-book was replaced many years ago by my resources pagehttps://codingheroes.io/resources/. 👉 Are you looking to get a course for free? I sometimes run giveaways on my Discord channelhttps://discord.gg/uhMkpf4, but in general I don't give out free coupons, simply because it's unfair to people who actually bought the course. 👉 Are you looking for my older newsletters? I don't have them on my website currently. Maybe I will at some point, so check my website again later.

[2] FOR MARKETING PEOPLE

👉 Do you want me to publish my courses on your platform/create new courses/write a book/etc.? I won't, I am working 100% exclusive with Udemy. 👉 Do you want to help me with marketing my courses? I'm not interested, Udemy does a stellar job at promoting (really, don't waste your time trying to convince me).

If you have something important that's not covered here, just reply to this email, and I might answer it at some point (I can't guarantee it 😅).

Have a wonderful day!

Jonas

On January 19, 2023 at 10:50 AM UTC, yehudaaa @.***) wrote:

Hi, I tried to run Trillo project, starter version, and when I tried to run in terminal npm install it failed. I updated the devDependencies in packages.json so the versions of the npms will be update to the latest versions and it fixed the problem. Probably an old version of at least one of the npms caused the error..

old: "devDependencies": { "autoprefixer": "^7.1.4", "concat": "^1.0.3", "node-sass": "^4.5.3", "npm-run-all": "^4.1.1", "postcss-cli": "^4.1.1" }

new: (latest versions from npmjs.com): "devDependencies": { "autoprefixer": "^10.4.13", "concat": "^1.0.3", "node-sass": "^8.0.0", "npm-run-all": "^4.1.5", "postcss-cli": "^10.1.0" }

— Reply to this email directly, view it on GitHubhttps://github.com/jonasschmedtmann/advanced-css-course/issues/107, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AEO2BAUFWSHV2UAZYCDBLDDWTEL6RANCNFSM6AAAAAAUAFRJV4. You are receiving this because you are subscribed to this thread.Message ID: @.***>

akikiaovie1 commented 1 year ago

thank you for that