diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-10-30 17:02:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-30 17:02:00 +0100 |
commit | 3bb4232bfa792debf0b858c7eba58c4d080941b3 (patch) | |
tree | e42f1ff66463d88660610fb98e159d0351595863 /build | |
parent | d591bdd494cf28a399ea7d7ae7ccbae3a5cab020 (diff) | |
download | jquery-ui-3bb4232bfa792debf0b858c7eba58c4d080941b3.tar.gz jquery-ui-3bb4232bfa792debf0b858c7eba58c4d080941b3.zip |
Build: Update a few dependencies, drop `grunt-cli`
`grunt` already contains the needed binary, no need for `grunt-cli` anymore.
Update `download.jqueryui.com` as well.
Closes gh-2311
Diffstat (limited to 'build')
-rw-r--r-- | build/release.js | 2 | ||||
-rw-r--r-- | build/tasks/build.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build/release.js b/build/release.js index 14fbd6f15..633dd34d1 100644 --- a/build/release.js +++ b/build/release.js @@ -153,7 +153,7 @@ Release.define( { }; module.exports.dependencies = [ - "download.jqueryui.com@2.3.10", + "download.jqueryui.com@2.3.12", "node-packager@0.0.7", "shelljs@0.8.5" ]; diff --git a/build/tasks/build.js b/build/tasks/build.js index 48feb7aba..bd07364ea 100644 --- a/build/tasks/build.js +++ b/build/tasks/build.js @@ -3,7 +3,7 @@ module.exports = function( grunt ) { grunt.registerTask( "clean", function() { - require( "rimraf" ).sync( "dist" ); + require( "rimraf" ).rimrafSync( "dist" ); } ); grunt.registerTask( "asciilint", function() { |