Skip to content

Commit

Permalink
Add browser_minpkg target
Browse files Browse the repository at this point in the history
  • Loading branch information
wolever committed Sep 20, 2013
1 parent 75dbfd0 commit 485fd4d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .gitignore
@@ -0,0 +1,18 @@
*.class
*.o
*.pyc
*.sqlite3
*.sw[op]
*~
.DS_Store
bin-debug/*
bin-release/*
bin/*
tags
*.beam
*.dump
env/
*egg-info*
node_modules/
build/
test/testrunner-*
6 changes: 6 additions & 0 deletions Makefile
Expand Up @@ -41,6 +41,12 @@ build/node_minpkg.js: build/package_base.js
closure $@.tmp > $@
rm $@.tmp

browser_minpkg: build/browser_minpkg.js
build/browser_minpkg.js: build/package_base.js
cp $< $@.tmp
closure $@.tmp > $@
rm $@.tmp

testrunners: devpkg node_minpkg
./test/build_testrunners.js

Expand Down
2 changes: 2 additions & 0 deletions TODO.txt
@@ -1,3 +1,5 @@
- Document make browser_minpkg
- Create a <%script> which can be used in place of <script>
- Add warning when defining functions inside templates using `function foo`
syntax.
- Finish parser-debug.js
Expand Down

0 comments on commit 485fd4d

Please sign in to comment.