mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 01:57:01 +00:00
10 lines
144 B
CoffeeScript
10 lines
144 B
CoffeeScript
c = require "../config"
|
|
p = c.paths
|
|
|
|
del = require "del"
|
|
|
|
|
|
module.exports = ->
|
|
del "#{p.out}/*"
|
|
module.exports.displayName = "clean"
|