-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
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
npm install fail -> update devDependencies to latest versions fix the problem #107
Comments
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 article<https://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 page<https://codingheroes.io/resources/>.
👉 Are you looking to get a course for free? I sometimes run giveaways on my Discord channel<https://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 GitHub<#107>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AEO2BAUFWSHV2UAZYCDBLDDWTEL6RANCNFSM6AAAAAAUAFRJV4>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
thank you for that |
Thank you |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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"
}
The text was updated successfully, but these errors were encountered: