Skip to content

Commit

Permalink
bump task and bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
reaganthomas committed Sep 8, 2015
1 parent 3b01963 commit f24437a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
11 changes: 10 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
(function() {
'use strict';

var gulp = require('gulp');
var mocha = require('gulp-mocha');
var bump = require('gulp-bump');

gulp.task('test', function() {
return gulp.src('test/**/*.js', { read: false })
return gulp.src('test/index.js', { read: false })
.pipe(mocha());
});

gulp.task('bump', function() {
gulp.src('./package.json')
.pipe(bump())
.pipe(gulp.dest('./'));
});
})();
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "algebra.structures.sum",
"version": "0.1.11",
"version": "0.1.12",
"description": "A summing structure conforming to the Monoid specification.",
"main": "lib/index.js",
"scripts": {
Expand All @@ -26,6 +26,7 @@
"algebra.laws": "^0.1.0",
"coveralls": "^2.11.4",
"gulp": "^3.9.0",
"gulp-bump": "^0.3.1",
"gulp-mocha": "^2.1.3",
"istanbul": "^0.3.19",
"mocha": "^2.3.1",
Expand Down

0 comments on commit f24437a

Please sign in to comment.