diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2016-12-30 12:17:00 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2016-12-30 13:54:59 +0100 |
commit | d10ac0e532a9376106c50f0c21a0d0fd0483b700 (patch) | |
tree | dfdf6a02d2ceb0e4e444692b3453b68bea06ede9 /Gruntfile.js | |
parent | bd9145fa15d91ab6c804161ecd892d4d08b71aa2 (diff) | |
download | jquery-d10ac0e532a9376106c50f0c21a0d0fd0483b700.tar.gz jquery-d10ac0e532a9376106c50f0c21a0d0fd0483b700.zip |
Build: Drop support for building on Node.js 0.12
Node.js 0.12 is no longer supported by upstream. So far we had to keep
a workaround that would skip running ESLint there (or even load its task)
as it no longer supports Node.js <4; the same applied to Node smoke tests
as jsdom has also dropped support for those old Node versions. Those
workarounds have been removed now.
Ref 030191ae32dfcb7ecb2efb61d17a4964a3633e44
Closes gh-3478
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 39 |
1 files changed, 11 insertions, 28 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index fbb271630..12ae0087e 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -13,15 +13,7 @@ module.exports = function( grunt ) { } var fs = require( "fs" ), - gzip = require( "gzip-js" ), - oldNode = /^v0\./.test( process.version ); - - // Support: Node.js <4 - // Skip running tasks that dropped support for Node.js 0.12 - // in this Node version. - function runIfNewNode( task ) { - return oldNode ? "print_old_node_message:" + task : task; - } + gzip = require( "gzip-js" ); if ( !grunt.option( "filename" ) ) { grunt.option( "filename", "jquery.js" ); @@ -187,20 +179,11 @@ module.exports = function( grunt ) { } ); // Load grunt tasks from NPM packages - // Support: Node.js <4 - // Don't load the eslint task in old Node.js, it won't parse. - require( "load-grunt-tasks" )( grunt, { - pattern: oldNode ? [ "grunt-*", "!grunt-eslint" ] : [ "grunt-*" ] - } ); + require( "load-grunt-tasks" )( grunt ); // Integrate jQuery specific tasks grunt.loadTasks( "build/tasks" ); - grunt.registerTask( "print_old_node_message", function() { - var task = [].slice.call( arguments ).join( ":" ); - grunt.log.writeln( "Old Node.js detected, running the task \"" + task + "\" skipped..." ); - } ); - grunt.registerTask( "lint", [ "jsonlint", @@ -208,20 +191,20 @@ module.exports = function( grunt ) { // would run the dist target first which would point to errors in the built // file, making it harder to fix them. We want to check the built file only // if we already know the source files pass the linter. - runIfNewNode( "eslint:dev" ), - runIfNewNode( "eslint:dist" ) + "eslint:dev", + "eslint:dist" ] ); grunt.registerTask( "lint:newer", [ "newer:jsonlint", // Don't replace it with just the task; see the above comment. - runIfNewNode( "newer:eslint:dev" ), - runIfNewNode( "newer:eslint:dist" ) + "newer:eslint:dev", + "newer:eslint:dist" ] ); - grunt.registerTask( "test:fast", runIfNewNode( "node_smoke_tests" ) ); - grunt.registerTask( "test:slow", runIfNewNode( "promises_aplus_tests" ) ); + grunt.registerTask( "test:fast", "node_smoke_tests" ); + grunt.registerTask( "test:slow", "promises_aplus_tests" ); grunt.registerTask( "test", [ "test:fast", @@ -230,7 +213,7 @@ module.exports = function( grunt ) { grunt.registerTask( "dev", [ "build:*:*", - runIfNewNode( "newer:eslint:dev" ), + "newer:eslint:dev", "newer:uglify", "remove_map_comment", "dist:*", @@ -238,12 +221,12 @@ module.exports = function( grunt ) { ] ); grunt.registerTask( "default", [ - runIfNewNode( "eslint:dev" ), + "eslint:dev", "build:*:*", "uglify", "remove_map_comment", "dist:*", - runIfNewNode( "eslint:dist" ), + "eslint:dist", "test:fast", "compare_size" ] ); |