Unable to run meteor #590
-
What's wrong?On running the steps reffered to in the installation guide, and starting the app by running How to Reproduce
Logs:
Context
|
Beta Was this translation helpful? Give feedback.
Replies: 8 comments 1 reply
-
This looks like a transient network error. You should probably try deleting the Meteor package cache ( |
Beta Was this translation helpful? Give feedback.
-
Well, I tried that, and it doesn't fix it. It does seem like a meteor issue, though. |
Beta Was this translation helpful? Give feedback.
-
For what it's worth, the file |
Beta Was this translation helpful? Give feedback.
-
That's the first thing I had checked too, and yes, it was there then. Edit: I just checked out the latest commit and ran meteor. > cat /AppData/Local/.meteor/packages/coagmano_stylus/1.1.0/plugin.compileStylusBatch.os/npm/node_modules/meteor/compileStylusBatch/node_modules/nib/lib/nib/flex.styl | more
/*
* Vendor "display: flex" support with fallback to obsolete versions.
*/
flex-version ?= box flex
//
// 1. Display values
// - http://www.w3.org/TR/css3-flexbox/#flex-containers
//
display(type, args...)
if flex == type || inline-flex == type
if box in flex-version
if flex == type
display: -ms-flexbox args
display: vendor-value(box args, only: moz webkit)
else
display: -ms-inline-flexbox args
display: vendor-value(inline-box args, only: moz webkit)
if flex in flex-version
-- More -- |
Beta Was this translation helpful? Give feedback.
-
Are you saying it's working now? If so, yay! |
Beta Was this translation helpful? Give feedback.
-
I really wish! For now, I have rolled back to the version without react |
Beta Was this translation helpful? Give feedback.
-
Weird. I looked at the diff since version
I'm still unable to reproduce the issue. I just tried upgrading my Meteor CLI (but not the Meteor version of Coauthor — that seems to require more work) and I can still run |
Beta Was this translation helpful? Give feedback.
-
Well, updating worked! Thank you for taking time out and helping 😃 P.S. I just realised you were the same Eric Demaine from 6.006. Thank you so much for your lectures on algorithms. From the perspective of a highschool student, they were immensly helpful and wonderfully explained. |
Beta Was this translation helpful? Give feedback.
Weird. I looked at the diff since version
before-react
, and thecoagmano:stylus
package was added since. So perhaps that's the problem somehow. You might try:coagmano:stylus
dependency to@2.0.0
(in.meteor/packages
). This version is very slow in my experience, but it's the latest, so maybe it works?I'm still unable to reproduce the issue. I just tried upgrading my Meteor CLI (but not the Meteor version of Coauthor — that seems to require more work) and I can still run
meteor
fine. I haven't triednpm install meteor
from a clean machine though; I'm still using the Chocolately based insta…