pulsar/tasks/clean-task.coffee
2013-07-03 17:53:43 -07:00

17 lines
493 B
CoffeeScript

path = require 'path'
module.exports = (grunt) ->
{rm} = require('./task-helpers')(grunt)
grunt.registerTask 'partial-clean', 'Delete some of the build files', ->
rm grunt.config.get('atom.buildDir')
rm '/tmp/atom-coffee-cache'
rm '/tmp/atom-cached-atom-shells'
rm 'node'
rm 'atom-shell'
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')