Skip to content

Commit 62b53e7

Browse files
committed
Add Gulp build tool with Hello World boilerplate gulpfile
1 parent 838b2ac commit 62b53e7

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

gulpfile.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
var gulp = require('gulp');
2+
3+
gulp.task('default', function () {
4+
console.log("Hello, World!");
5+
});

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"author": "Bhargav R. Patel <[email protected]> (http://github.com/bhargavrpatel)",
1010
"license": "ISC",
1111
"devDependencies": {
12-
"bower": "^1.4.1"
12+
"bower": "^1.4.1",
13+
"gulp": "^3.9.0"
1314
}
1415
}

0 commit comments

Comments
 (0)