mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-19 08:14: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
|