Skip to content

Commit

Permalink
Add Gruntfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Supakit Thanadittagorn committed Jul 13, 2014
1 parent 0d9ac3a commit 6eb5089
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = function(grunt) {

grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
karma: {
options: {
configFile: 'karma.conf.js',
},
continuous: {
singleRun: true,
},
dev: {
}
}
});

grunt.loadNpmTasks('grunt-karma');
};

0 comments on commit 6eb5089

Please sign in to comment.