aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-12-14 22:23:28 -0500
committerBen Burwell <ben@benburwell.com>2015-12-14 22:23:28 -0500
commit25ae4e9c132d6e68ddb389808b8f22c8f43b17cd (patch)
treef1647f2fa1df50cb5f06dbe8c23d4aa9deac8132 /Gruntfile.js
parent05337261ffb4abfb0fbbb9c775ccad0e28645692 (diff)
Begin rewrite for new OAuth API
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
deleted file mode 100644
index 34f8dc8..0000000
--- a/Gruntfile.js
+++ /dev/null
@@ -1,20 +0,0 @@
-module.exports = function (grunt) {
-
- grunt.initConfig({
- jshint: {
- all: ['lib/*.js', 'examples/*.js']
- },
- mochaTest: {
- test: {
- options: {
- reporter: 'spec'
- },
- src: ['tests/*.js']
- }
- }
- });
-
- grunt.loadNpmTasks('grunt-contrib-jshint');
- grunt.loadNpmTasks('grunt-mocha-test');
- grunt.registerTask('default', ['jshint', 'mochaTest']);
-};