mirror of
https://github.com/lloeki/uspec-js.git
synced 2025-12-06 10:34:40 +01:00
uspec.js: first public release
This commit is contained in:
commit
ec516c106c
8 changed files with 769 additions and 0 deletions
22
Makefile
Normal file
22
Makefile
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
all: release
|
||||
|
||||
release: uspec.js
|
||||
|
||||
%.js: %.coffee
|
||||
coffee --compile $<
|
||||
|
||||
run_spec.js: fake_module.js uspec.js uspec_spec.js
|
||||
cat $^ > $@
|
||||
|
||||
node_spec: uspec_spec.js uspec.js
|
||||
node $<
|
||||
|
||||
phantom_spec: run_spec.js
|
||||
phantomjs $<
|
||||
|
||||
spec: node_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