mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-05-04 17:56:50 +00:00
17 lines
215 B
Bash
Executable File
17 lines
215 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# run TiddlyWiki5
|
|
|
|
pushd editions/tw5.com > /dev/null
|
|
|
|
node ../../tiddlywiki.js \
|
|
--verbose \
|
|
--wikitest ../../tests/wikitests/ \
|
|
|| exit 1
|
|
|
|
popd > /dev/null
|
|
|
|
# run jshint
|
|
jshint core
|
|
jshint plugins
|