-
It works well!
``` js
gulp.task('less', function() {
return gulp.src('css/*.less', { cwd: 'app/**' })
.pipe($.plumber())
.pipe($.less())
.pipe(gulp.dest('.tmp'));
});
```
```
[gulp] Starting…
-
I've been investigating the end-to-end sourcemap story for TypeScript through plugins like `gulp-typescript` and `gulp-tsb`. One thing that I've noticed is that `gulp-sourcemaps` seems to ignore and o…
-
hay guys do u have any gulp plugin or working on that or something . or their is some way to use it with gulp ??
-
Sorry I don't have a whole lot of time to debug this right now but since the update to `1.0.2`, my staging server hasn't been able to compile properly in the last 3 pushes. For now, I've had to revert…
-
This is my gulp webserver task:
``` coffee
gulp = require "gulp"
$ = do require "gulp-load-plugins"
gulp.task "webserver", ->
gulp.src "dist"
.pipe $.webserver(
directoryListing : …
-
```
/project
/assets
/sources
gulpfile.js
package.json
index.php
```
I currently have all of my gulp and npm related files inside a "sources" folder. I am wanting…
-
`gulp-autoprefixer 1.0.1` is ok, but `gulp-autoprefixer 2.0.0` get error
```
gulp.task('sass', function(){
return gulp.src('app/assets/styles/b.scss')
.pipe($.plumber())
.pipe($.rubySass({…
-
I just want to clarify that this is in fact the plugin the community should be using in conjunction with `gulp-sourcemaps`. From scanning the code, this seems to be the case - but I'm not entirely su…
-
Hi all,
I created a new project with this generator v0.12.1, not touched any file, executed the following commands:
npm install -> ok
bower install -> ok
gulp build -> ok
gulp serve -> ok
gulp test -…
-
Hi @lukeed,
Transforms and plugins are not applied. After inspecting the source of `fly-browserify` I think they might have been forgotten.
I would advise to simply pass the options directly the…