1
0
mirror of https://github.com/robertkrimen/otto synced 2025-10-26 20:28:49 +08:00

Add README for underscore

This commit is contained in:
Robert Krimen
2012-10-10 16:11:46 -07:00
parent 0b4d73118d
commit 84b4aee178
2 changed files with 53 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: test assets todo fixme otto run test-all release test-synopsis
.PHONY: test assets todo fixme otto run test-all release test-synopsis test-i
export TERST_BASE=$(PWD)
@@ -20,8 +20,10 @@ TEST := -v --run ParseSuccess
TEST := -v --run OttoError
TEST := .
test:
test-i:
go test -i
test: test-i
go test $(TEST)
assets:
@@ -40,12 +42,12 @@ otto:
run:
go run -a ./otto/main.go ./otto.js
test-all:
test-all: test-i
go test .
release: test-all test-synopsis
godocdown --signature > README.markdown
test-synopsis:
test-synopsis: test-i
cd .test && go test -v
cd .test && otto example.js