jquery.pep.js
Version:
Kinetic drag for mobile & desktop
54 lines (48 loc) • 1.27 kB
JavaScript
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
},
qunit: {
files: ['test/**/*.html']
},
watch: {
files: '<config:lint.files>',
tasks: 'lint qunit'
},
jshint: {
options: {
curly: false,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: false,
boss: true,
eqnull: true,
browser: true
},
globals: {
jQuery: true
},
src: ['src/**/*.js'],
all: ['Gruntfile.js', 'src/**/*.js', 'test/**/*.js']
},
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-qunit');
// Default task.
grunt.registerTask('default', ['jshint:src', 'qunit']);
// Server Task
grunt.registerTask('serve', 'Serves any directory on given port', function (env) {
var shell = require('shelljs');
var port = grunt.option('port') || 8000;
var dir = grunt.option('dir') || '.';
console.log(['Serving', dir,'on port:', port].join(' '))
shell.exec('cd '+ dir +' && python -m SimpleHTTPServer ' + port);
});
};