mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-27 20:33:08 -08:00
16 lines
214 B
Bash
Executable file
16 lines
214 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# run TiddlyWiki5
|
|
|
|
pushd editions/tw5.com > /dev/null
|
|
|
|
node ../../core/boot.js \
|
|
--verbose \
|
|
--wikitest ../../tests/wikitests/ \
|
|
|| exit 1
|
|
|
|
popd > /dev/null
|
|
|
|
# run jshint
|
|
jshint core
|
|
jshint plugins
|