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/tasks/build.js | |
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/tasks/build.js')
-rw-r--r-- | build/tasks/build.js | 2 |
1 files changed, 1 insertions, 1 deletions
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() { |