mirror of
https://github.com/lloeki/umodule-js.git
synced 2025-12-06 10:34:40 +01:00
umodule.js: first public release
This commit is contained in:
commit
c375db3ddf
11 changed files with 306 additions and 0 deletions
22
Makefile
Normal file
22
Makefile
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
all: release
|
||||
|
||||
release: umodule.js
|
||||
|
||||
%.js: %.coffee
|
||||
coffee --compile $<
|
||||
|
||||
uspec_module.js: uspec/uspec.js wrapper
|
||||
./wrap_module uspec $< > $@
|
||||
|
||||
run_spec.js: umodule.js uspec_module.js umodule_spec.js
|
||||
cat $^ > $@
|
||||
|
||||
phantom_spec: run_spec.js
|
||||
phantomjs $<
|
||||
|
||||
spec: phantom_spec
|
||||
|
||||
clean:
|
||||
@rm -f *.js
|
||||
|
||||
.PHONY: release node_spec phantom_spec spec
|
||||
Loading…
Add table
Add a link
Reference in a new issue