We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5898e18 commit 21950f2Copy full SHA for 21950f2
Gruntfile.js
@@ -27,10 +27,10 @@ grunt.registerTask( "clean", function() {
27
.concat( Object.keys( data.tags || {} ) )
28
.forEach(function( directory ) {
29
grunt.log.writeln( "Removing " + directory );
30
- grunt.file.remove( config.output + "/" + directory );
+ grunt.file["delete"]( config.output + "/" + directory );
31
});
32
grunt.log.writeln( "Removing data.json" );
33
- grunt.file.remove( config.output + "/data.json" );
+ grunt.file["delete"]( config.output + "/data.json" );
34
35
36
grunt.registerTask( "update-repo", function() {
0 commit comments