We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6610e56 commit 576b78fCopy full SHA for 576b78f
test/test-project/gulpfile.js
@@ -0,0 +1,10 @@
1
+var gulp = require('gulp');
2
+var watch = require('gulp-watch');
3
+var haml = require('gulp-ruby-haml');
4
+
5
+gulp.task('default', function() {
6
+ gulp.src('../fixtures/*.haml', {read: false}).
7
+ pipe(watch()).
8
+ pipe(haml()).
9
+ pipe(gulp.dest('./'));
10
+});
test/test-project/package.json
@@ -0,0 +1,13 @@
+{
+ "name": "chickens",
+ "license": "UNLICENSED",
+ "private": true,
+ "devDependencies": {
+ "gulp": "~3.5.2",
+ "gulp-watch": "~0.5.0",
+ "gulp-ruby-haml": "0.0.7"
+ },
+ "scripts": {
11
+ "start": "gulp"
12
+ }
13
+}
0 commit comments