mirror of https://github.com/RubaXa/Sortable.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.9 KiB
78 lines
1.9 KiB
module.exports = function (grunt) { |
|
'use strict'; |
|
|
|
grunt.initConfig({ |
|
pkg: grunt.file.readJSON('package.json'), |
|
|
|
version: { |
|
src: ['<%= pkg.exportName %>.js', '*.json'] |
|
}, |
|
|
|
jshint: { |
|
all: ['*.js', '!*.min.js'], |
|
|
|
options: { |
|
strict: true, |
|
newcap: false, // "Tolerate uncapitalized constructors" |
|
node: true, |
|
expr: true, // - true && call() "Expected an assignment or function call and instead saw an expression." |
|
supernew: true, // - "Missing '()' invoking a constructor." |
|
laxbreak: true, |
|
white: true, |
|
globals: { |
|
define: true, |
|
test: true, |
|
expect: true, |
|
module: true, |
|
asyncTest: true, |
|
start: true, |
|
ok: true, |
|
equal: true, |
|
notEqual: true, |
|
deepEqual: true, |
|
window: true, |
|
document: true, |
|
performance: true |
|
} |
|
} |
|
}, |
|
|
|
uglify: { |
|
options: { |
|
banner: '/*! <%= pkg.exportName %> <%= pkg.version %> - <%= pkg.license %> | <%= pkg.repository.url %> */\n' |
|
}, |
|
dist: { |
|
files: { |
|
'<%= pkg.exportName %>.min.js': ['<%= pkg.exportName %>.js'] |
|
} |
|
} |
|
}, |
|
|
|
shell: { |
|
'meteor-test': { |
|
command: 'meteor/runtests.sh' |
|
}, |
|
'meteor-publish': { |
|
command: 'meteor/publish.sh' |
|
} |
|
} |
|
|
|
}); |
|
|
|
|
|
grunt.loadNpmTasks('grunt-version'); |
|
grunt.loadNpmTasks('grunt-contrib-jshint'); |
|
grunt.loadNpmTasks('grunt-contrib-uglify'); |
|
grunt.loadNpmTasks('grunt-shell'); |
|
|
|
// Meteor tasks |
|
grunt.registerTask('meteor-test', 'shell:meteor-test'); |
|
grunt.registerTask('meteor-publish', 'shell:meteor-publish'); |
|
// ideally we'd run tests before publishing, but the chances of tests breaking (given that |
|
// Meteor is orthogonal to the library) are so small that it's not worth the maintainer's time |
|
// grunt.regsterTask('meteor', ['shell:meteor-test', 'shell:meteor-publish']); |
|
grunt.registerTask('meteor', 'shell:meteor-publish'); |
|
|
|
grunt.registerTask('tests', ['jshint']); |
|
grunt.registerTask('default', ['tests', 'version', 'uglify']); |
|
};
|
|
|