aboutsummaryrefslogtreecommitdiff
path: root/node_modules/ipaddr.js/Cakefile
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/ipaddr.js/Cakefile')
-rw-r--r--node_modules/ipaddr.js/Cakefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/node_modules/ipaddr.js/Cakefile b/node_modules/ipaddr.js/Cakefile
deleted file mode 100644
index 7fd355a..0000000
--- a/node_modules/ipaddr.js/Cakefile
+++ /dev/null
@@ -1,18 +0,0 @@
-fs = require 'fs'
-CoffeeScript = require 'coffee-script'
-nodeunit = require 'nodeunit'
-UglifyJS = require 'uglify-js'
-
-task 'build', 'build the JavaScript files from CoffeeScript source', build = (cb) ->
- source = fs.readFileSync 'src/ipaddr.coffee'
- fs.writeFileSync 'lib/ipaddr.js', CoffeeScript.compile source.toString()
-
- invoke 'test'
- invoke 'compress'
-
-task 'test', 'run the bundled tests', (cb) ->
- nodeunit.reporters.default.run ['test']
-
-task 'compress', 'uglify the resulting javascript', (cb) ->
- result = UglifyJS.minify('lib/ipaddr.js')
- fs.writeFileSync('ipaddr.min.js', result.code)