Closed tomasholderness closed 8 years ago
I don't seem to have this installed. I wonder if this relates to the build issue you're seeing. Do we have a transitive dependency issue? Some dependency you're getting a newer version perhaps?
I could not replicate this, a fresh checkout works OK. I see 'clean-css' is a transitive dependency via 'grunt-contrib-cssmin', so I'm thinking maybe there was a problem with the remote repo or network when you first installed that build that gave you trouble which meant the dependency wasn't installed right first time.
In a fresh copy of the repo, after running
npm install
followed bygrunt
the build fails becauseclean-css
is required.Fixed via
npm install clean-css
.