Comparing version 5.2.0 to 5.2.1
# Changelog for [squel](https://github.com/hiddentao/squel) | ||
## 18 May 2016 (5.2.1) | ||
* Re-fix for #109 - custom string formatting wasn't quite working | ||
## 18 May 2016 (5.2.0) | ||
@@ -4,0 +7,0 @@ * Fix for #109 - custom string formatting function enabled |
@@ -12,3 +12,4 @@ require('coffee-script/register'); | ||
uglify = require('gulp-uglify'), | ||
runSequence = require('run-sequence'); | ||
runSequence = require('run-sequence'), | ||
argv = require('yargs').argv; | ||
@@ -75,3 +76,3 @@ | ||
gulp.task('test', function () { | ||
return gulp.src([ | ||
return gulp.src(argv.onlyTest || [ | ||
'./test/baseclasses.test.coffee', | ||
@@ -78,0 +79,0 @@ './test/blocks.test.coffee', |
{ | ||
"name": "squel", | ||
"description": "SQL query string builder", | ||
"version": "5.2.0", | ||
"version": "5.2.1", | ||
"author": "Ramesh Nair <ram@hiddentao.com> (http://www.hiddentao.com/)", | ||
@@ -29,3 +29,4 @@ "contributors": [ | ||
"uglify-js": "1.3.x", | ||
"underscore": "1.4.x" | ||
"underscore": "1.4.x", | ||
"yargs": "^4.7.1" | ||
}, | ||
@@ -32,0 +33,0 @@ "keywords": [ |
Sorry, the diff of this file is too big to display
134625
19
2973