aboutsummaryrefslogtreecommitdiff
path: root/node_modules/ipaddr.js/Cakefile
diff options
context:
space:
mode:
authornanalelfe <nargiza.nosirova@mail.utoronto.ca>2016-07-28 02:20:52 +0000
committernanalelfe <nargiza.nosirova@mail.utoronto.ca>2016-07-28 02:20:52 +0000
commit4cff38c8f7b65dab1fd72ea835ea7288327d1056 (patch)
treeac93acd69e77eef1e352af953d56238d70ea9c5d /node_modules/ipaddr.js/Cakefile
parente11dd98c9a55cd1742d221e3b1ea90d31e240fa8 (diff)
Fixed admin bug
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)