From f24c3c1174c8c7a453f377747e256b7f7f55f5e8 Mon Sep 17 00:00:00 2001 From: Lucas Gabriel Lima <lgl15@inf.ufpr.br> Date: Wed, 31 Aug 2016 09:44:17 -0300 Subject: [PATCH] add gulp and gulpfile to project --- gulpfile.js | 5 +++++ package.json | 1 + 2 files changed, 6 insertions(+) create mode 100644 gulpfile.js diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 00000000..99dcbc68 --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,5 @@ +var gulp = require('gulp'); + +gulp.task('default', function() { + +}); diff --git a/package.json b/package.json index 70eae984..04f97575 100644 --- a/package.json +++ b/package.json @@ -28,6 +28,7 @@ "devDependencies": { "chai": "^3.5.0", "chai-http": "^3.0.0", + "gulp": "^3.9.1", "mocha": "^2.5.3" } } -- GitLab