Drop unmaintained coffee-snowflake.html

This commit is contained in:
Arlo Breault 2016-12-20 08:17:11 -08:00
parent 5cd2a226aa
commit 77c41207ef
5 changed files with 2 additions and 95 deletions

View file

@ -1,5 +1,5 @@
fs = require 'fs'
{exec, spawn, execSync} = require 'child_process'
{ exec, spawn, execSync } = require 'child_process'
# All coffeescript files required.
FILES = [
@ -24,7 +24,6 @@ STATIC = 'static'
copyStaticFiles = ->
exec 'cp ' + STATIC + '/* build/'
exec 'cp lib/modernizr.js build/'
compileCoffee = ->
exec 'cat ' + FILES.join(' ') + ' | coffee -cs > ' + OUTFILE, (err, stdout, stderr) ->