Skip to content

Commit 576b78f

Browse files
committed
Add simple test project
1 parent 6610e56 commit 576b78f

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

test/test-project/gulpfile.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "chickens",
3+
"license": "UNLICENSED",
4+
"private": true,
5+
"devDependencies": {
6+
"gulp": "~3.5.2",
7+
"gulp-watch": "~0.5.0",
8+
"gulp-ruby-haml": "0.0.7"
9+
},
10+
"scripts": {
11+
"start": "gulp"
12+
}
13+
}

0 commit comments

Comments
 (0)