-
Notifications
You must be signed in to change notification settings - Fork 55
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
When assigning a css directory, the gulp.dest folder get's ignored. #112
Comments
+1, this problem has suddenly emerged in a project I hadn't worked on for about a week. My task:
Should go to:
But instead goes in the top app directory, in Updating npm didn't seem to do anything -- I will try to debug further but I'm not entirely sure the best course of action for doing so. |
Hi @mvattuone I try your config. It is working for me. Compass will output css temp file in
Initial project: and run |
Oh ha, you are correct -- did the temp CSS directory get deleted in previous versions? I can add the directory to .gitignore but seems kind of unnecessary after the build completes and I think that was confusing me before. Thanks @appleboy! |
@chriscodeweb I guess, to make the minifying work, you need to assign the correct path to .scss files rather than |
Hi I'm new to gulp and compass so I might have done something wrong but trying to configure a gulp workflow I've encountered a problem similar to the one that's discussed here. My gulpfile.js:`var gulp = require('gulp'), var env, env = process.env.NODE_ENV || 'development'; if (env==='Development') { jsSources = [ gulp.task('js', function () { gulp.task('html', function () { gulp.task('json', function () { gulp.task('compass', function () { gulp.task('watch', function () { gulp.task('connect', function () { gulp.task('default', ['html', 'json', 'js', 'compass', 'watch', 'connect']);` My package.json:
|
Hello,
I can't seem to use the gulp.dest folder after I used the compas command.
I noticed, when I leave the css folder out, the gulp dest folder still get's ignored. But then
a css folder gets created in the same folder as the gulpfile.js.
What do I need to change to make the gulp.dest work? Because the .pipe(minifyCSS()) methods
does nothing because the compass does not return the streaming data.
The text was updated successfully, but these errors were encountered: