Remove ~/.atom/.node-gyp during clean

This commit is contained in:
Kevin Sawicki
2013-07-03 09:26:04 -07:00
parent 433beac9aa
commit 59097ddf96

View File

@@ -1,3 +1,5 @@
path = require 'path'
module.exports = (grunt) ->
{rm} = require('./task-helpers')(grunt)
@@ -9,4 +11,5 @@ module.exports = (grunt) ->
grunt.registerTask 'clean', 'Delete all the build files', ->
rm 'node_modules'
rm path.join(process.env.HOME, '.atom', '.node-gyp')
grunt.task.run('partial-clean')