Skip to content
This repository was archived by the owner on Apr 3, 2019. It is now read-only.

Commit 422971f

Browse files
committed
Clean-up gulp
1 parent 920fe06 commit 422971f

File tree

2 files changed

+5
-17
lines changed

2 files changed

+5
-17
lines changed

gulpfile.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
var gulp = require("gulp");
66
var browserify = require('browserify');
77
var source = require('vinyl-source-stream');
8-
var uglify = require('gulp-uglify');
9-
var deploy = require("gulp-gh-pages");
108

119
var opt = {
1210
outputFolder: "build",
@@ -25,12 +23,4 @@ gulp.task("dist", function() {
2523
.pipe(gulp.dest(opt.outputFolder));
2624
});
2725

28-
/**
29-
* Deploy to gh-pages
30-
*/
31-
gulp.task("deploy", ["dist"], function() {
32-
gulp.src("./build/**")
33-
.pipe(deploy("[email protected]:spiral-project/daybed.js.git"));
34-
});
35-
3626
gulp.task("default", ["dist"]);

package.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,16 @@
1515
},
1616
"dependencies": {
1717
"hawk": "2.2.*",
18-
"sjcl": "1.0.*",
19-
"gulp": "^3.8.*",
20-
"gulp-gh-pages": "^0.3.*",
21-
"gulp-uglify": "^0.3.*",
22-
"browserify": "^4.1.*",
23-
"vinyl-source-stream": "^0.1.*"
18+
"sjcl": "1.0.*"
2419
},
2520
"devDependencies": {
2621
"mocha": "1.21.*",
2722
"chai": "1.9.*",
2823
"sinon": "1.10.*",
2924
"mocha-phantomjs": "3.5.*",
30-
"promise-polyfill": "1.1.*"
25+
"promise-polyfill": "1.1.*",
26+
"gulp": "^3.8.*",
27+
"browserify": "^4.1.*",
28+
"vinyl-source-stream": "^0.1.*"
3129
}
3230
}

0 commit comments

Comments
 (0)