From 40db7e127a1a0808a7b970ee925b211d8ec73944 Mon Sep 17 00:00:00 2001 From: Jacob Beard Date: Fri, 1 Jun 2012 11:11:27 -0400 Subject: [PATCH] Removed unnecessary rhino build module. --- lib/rhino/build/stitch.js | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 lib/rhino/build/stitch.js diff --git a/lib/rhino/build/stitch.js b/lib/rhino/build/stitch.js deleted file mode 100644 index ab9920f3..00000000 --- a/lib/rhino/build/stitch.js +++ /dev/null @@ -1,13 +0,0 @@ -var stitch = require('stitch'); -var fs = require('fs'); - -var pkg = stitch.createPackage({ - paths: [__dirname + '/..'] -}); - -pkg.compile(function (err, source){ - fs.writeFile('SCION.js', source, function (err) { - if (err) throw err; - console.log('Compiled scion.js'); - }); -});