We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5832802 + 406a4e6 commit e08db2fCopy full SHA for e08db2f
3 files changed
Gruntfile.js
@@ -16,5 +16,6 @@ module.exports = function(grunt) {
16
grunt.loadNpmTasks('grunt-contrib-nodeunit');
17
18
grunt.registerTask('default', ['uglify']);
19
+ grunt.registerTask('test', ['jshint']);
20
21
};
circle.yml
@@ -0,0 +1,6 @@
1
+machine:
2
+ node:
3
+ version: 0.10.29
4
+dependencies:
5
+ post:
6
+ - npm install grunt-cli -g
package.json
@@ -19,6 +19,9 @@
"bugs": {
"url": "https://github.com/solidusjs/devtools-solidus/issues"
},
22
+ "scripts": {
23
+ "test": "grunt test"
24
+ },
25
"devDependencies": {
26
"grunt": "~0.4.5",
27
"grunt-contrib-jshint": "~0.10.0",
0 commit comments