You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.
I'm running a Virtual Node Server hosted through Digital Ocean on an Ubuntu machine.
I have a pretty standard yo angular install. I admittedly uninstalled karma, but otherwise it's clean.
When I run grunt, I get the following error, presumably as a part of the build task:
Running "cssmin:generated" (cssmin) task
>> Destination not written because minified CSS was empty.
I found a similar issue on generator-webapp (#211) where the problem was ensuring ruby, sass, and compass were correctly installed on the machine. I have checked the versions for the three ruby -v, compass -v and sudo compass version (compass requires permission for sudo compass version). They all seem to be installed fine, although running
In my gem list I have:
compass (1.0.1, 0.12.2)
sass (3.4.9, 3.2.12)
ruby -v outputs ruby 1.9.3p484, so it appears all three are installed correctly.
The problem appears to be related to the fact that no .tmp directory exists in server/dist.
The styles directory exists in server/dist, but there is no .tmp folder. I manually created a .tmp folder, but it was deleted after running grunt. Could this be the problem?
Any help is appreciated.
The text was updated successfully, but these errors were encountered:
I bumped into a similar problem but I'm not using sass. The concurrent:dist task that copies the main.css file, running in parallel was not ready before minification started. Adding the copy:styles content to the copy:dist command fixed the problem for me.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm running a Virtual Node Server hosted through Digital Ocean on an Ubuntu machine.
I have a pretty standard
yo angular
install. I admittedly uninstalledkarma
, but otherwise it's clean.When I run
grunt
, I get the following error, presumably as a part of thebuild
task:I found a similar issue on generator-webapp (#211) where the problem was ensuring ruby, sass, and compass were correctly installed on the machine. I have checked the versions for the three
ruby -v
,compass -v
andsudo compass version
(compass requires permission forsudo compass version
). They all seem to be installed fine, although runningIn my
gem list
I have:ruby -v
outputsruby 1.9.3p484
, so it appears all three are installed correctly.The problem appears to be related to the fact that no
.tmp
directory exists inserver/dist
.The
styles
directory exists inserver/dist
, but there is no.tmp
folder. I manually created a .tmp folder, but it was deleted after running grunt. Could this be the problem?Any help is appreciated.
The text was updated successfully, but these errors were encountered: