UNPKG

eventric

Version:

Build JavaScript applications with Behaviour-driven Domain Design. Based on DDD, BDD, CQRS and EventSourcing.

12 lines (10 loc) 275 B
bump = require 'gulp-bump' module.exports = (gulp) -> gulp.task 'bump:minor', -> gulp.src('./*.json') .pipe bump(type: 'minor') .pipe gulp.dest('./') gulp.task 'bump:patch', -> gulp.src('./*.json') .pipe bump(type: 'patch') .pipe gulp.dest('./')