Skip to content

Commit

Permalink
Small update
Browse files Browse the repository at this point in the history
  • Loading branch information
kobezzza committed May 4, 2015
1 parent 3f636a9 commit cd30e78
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build/file.js
@@ -1,11 +1,11 @@
/*!
* Monic v2.1.6
* Monic v2.1.7
* https://github.com/MonicBuilder/Monic
*
* Released under the MIT license
* https://github.com/MonicBuilder/Monic/blob/master/LICENSE
*
* Date: Mon, 04 May 2015 12:26:57 GMT
* Date: Mon, 04 May 2015 14:12:13 GMT
*/

'use strict';
Expand Down
4 changes: 2 additions & 2 deletions build/parser.js
@@ -1,11 +1,11 @@
/*!
* Monic v2.1.6
* Monic v2.1.7
* https://github.com/MonicBuilder/Monic
*
* Released under the MIT license
* https://github.com/MonicBuilder/Monic/blob/master/LICENSE
*
* Date: Mon, 04 May 2015 12:26:57 GMT
* Date: Mon, 04 May 2015 14:12:13 GMT
*/

'use strict';
Expand Down
8 changes: 7 additions & 1 deletion gulpfile.js
Expand Up @@ -138,6 +138,11 @@ function test(cb) {

gulp.task('full-build', ['build'], test);
gulp.task('test', test);
gulp.task('yaspeller', function (cb) {
run('yaspeller ./').exec()
.on('error', error(cb))
.on('finish', cb);
});

gulp.task('watch', function () {
async.whilst(
Expand All @@ -153,8 +158,9 @@ gulp.task('watch', function () {
gulp.watch('./lib/*.js', ['full-build']);
gulp.watch('./monic.js', ['bump']);
gulp.watch(['./spec/**/*', './monic.js'], ['test']);
gulp.watch('./*.md', ['yaspeller']);
}
);
});

gulp.task('default', ['copyright', 'head', 'full-build', 'bump']);
gulp.task('default', ['copyright', 'head', 'full-build', 'bump', 'yaspeller']);
2 changes: 1 addition & 1 deletion monic.js
Expand Up @@ -23,7 +23,7 @@ global.Collection = collection.Collection;
global.$C = collection.$C;

/** @type {!Array} */
exports.VERSION = [2, 1, 6];
exports.VERSION = [2, 1, 7];

/**
* Builds a file
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "monic",
"description": "File builder for JavaScript.",
"version": "2.1.6",
"version": "2.1.7",
"homepage": "https://github.com/MonicBuilder/Monic",
"author": {
"name": "kobezzza",
Expand Down

0 comments on commit cd30e78

Please sign in to comment.