Skip to content

Commit

Permalink
Stable Version 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Oct 9, 2015
1 parent 7f15722 commit 2d673b6
Show file tree
Hide file tree
Showing 6 changed files with 422 additions and 383 deletions.
1 change: 1 addition & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"node": false,
"browser": true,
"esnext": true,
"asi": true,
"bitwise": true,
"camelcase": true,
"curly": true,
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
##### 0.11.0 - 08 October 2015

- #18, #21 - Support filtering across relations (apply joins / fix column name) by @techniq
- #19, #20 - Use co-mocha for tests to simplify async flow. by @techniq
- Project now enforces JS Standard Style

##### 0.10.0 - 19 September 2015

- #15, #16 - Removed the various database libs from peerDependencies.
Expand Down
17 changes: 17 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,27 @@ module.exports = function (grunt) {
}
});

grunt.registerTask('standard', function () {
var child_process = require('child_process');
var done = this.async();
grunt.log.writeln('Linting for correcting formatting...');
child_process.exec('node node_modules/standard/bin/cmd.js --parser babel-eslint src/index.js', function (err, stdout) {
console.log(stdout);
if (err) {
grunt.log.writeln('Failed due to ' + (stdout.split('\n').length - 2) + ' lint errors!');
done(err);
} else {
grunt.log.writeln('Done linting.');
done();
}
});
});

grunt.registerTask('n', ['mochaTest']);

grunt.registerTask('test', ['build', 'n']);
grunt.registerTask('build', [
'standard',
'webpack'
]);
grunt.registerTask('go', ['build', 'watch:dist']);
Expand Down
Loading

0 comments on commit 2d673b6

Please sign in to comment.