Skip to content

Commit

Permalink
nake makes live page script also
Browse files Browse the repository at this point in the history
  • Loading branch information
jostylr committed May 12, 2012
1 parent 8c81072 commit 2c2adcc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scheem/nake.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@ exec = require('child_process').exec;
exec("browserify -e test_entry.js -o test_go.js", {cwd:dir}, function (err, out, oerr) {
exec("uglifyjs --overwrite test_go.js", {cwd:dir}, function (err, out, oerr) {});
});

exec("browserify -e entry.js -o run.js", {cwd:dir}, function (err, out, oerr) {
exec("uglifyjs --overwrite run.js", {cwd:dir}, function (err, out, oerr) {});
});

0 comments on commit 2c2adcc

Please sign in to comment.