aboutsummaryrefslogtreecommitdiff
path: root/clean.js
diff options
context:
space:
mode:
authorGravatar Daniel Smith <rdnlsmith@gmail.com> 2018-10-26 11:42:39 -0400
committerGravatar Daniel Smith <rdnlsmith@gmail.com> 2018-10-26 11:42:39 -0400
commit1a1006e4b4aedeb0271b547cbbb66e76afdcffbe (patch)
tree57c9b1590494ae3802f34eee675273c62b644451 /clean.js
parenta6d232d837e807a6e52fbb154543a765cab9b0f0 (diff)
Integrate vscode-theme-generator
Diffstat (limited to 'clean.js')
-rw-r--r--clean.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/clean.js b/clean.js
new file mode 100644
index 0000000..46d1826
--- /dev/null
+++ b/clean.js
@@ -0,0 +1,7 @@
+var glob = require('glob');
+var fs = require('fs');
+var path = require('path');
+
+glob.sync('./themes/ts-built/**/*.js').forEach(function(file) {
+ fs.unlinkSync(path.resolve(file));
+}); \ No newline at end of file