Not resolved for me. I also did a fresh install of Meteor 1.6.0.1 and
meteor add materialize:materialize
failed as described above.
I also tried cloning the current
v1-dev
branch, but it failed to build with another error message (Error: ENOENT: no such file or directory, open 'E:\myproj\packages\materialize\sass\components\date_picker\_default.date.scss'
).
So here's my summary of workaround steps for anyone else trying to run this during their first hour with Meteor and getting frustrated with it:
- Create a local folder
packages
in your project and switch into it. - Run
git clone https://github.com/Dogfalo/materialize.git
. You should now have a directorypackages/materialize
in your project. - Run
git checkout master
. - Edit the file
packages/materialize/package.json
and change
"node-sass": "^4.5.2",
to
"node-sass": "^4.5.3",
- Now run
meteor add materialize:materialize
from your project directory again. This time it should succeed!
I would really love for this to be submitted as an update to Atmosphere somehow, so the experience for newcomers like me is a bit smoother!
Comments
Post a Comment