2012-06-01 17:27:33 +00:00
|
|
|
#!/bin/bash
|
2012-05-04 16:47:12 +00:00
|
|
|
|
|
|
|
# run TiddlyWiki5
|
|
|
|
|
2012-11-16 21:27:53 +00:00
|
|
|
pushd editions/tw5.com > /dev/null
|
2012-05-05 22:32:04 +00:00
|
|
|
|
2012-11-29 21:30:53 +00:00
|
|
|
node ../../tiddlywiki.js \
|
2012-05-05 22:32:04 +00:00
|
|
|
--verbose \
|
2012-11-16 21:27:53 +00:00
|
|
|
--wikitest ../../tests/wikitests/ \
|
2012-05-05 22:32:04 +00:00
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
popd > /dev/null
|
2012-05-05 10:24:45 +00:00
|
|
|
|
2012-05-04 17:49:04 +00:00
|
|
|
# run jshint
|
2012-05-19 14:13:17 +00:00
|
|
|
jshint core
|
2012-11-16 16:58:59 +00:00
|
|
|
jshint plugins
|