mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-26 11:53:26 -08:00
15 lines
184 B
Bash
Executable file
15 lines
184 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# run TiddlyWiki5
|
|
|
|
pushd tw5.com > /dev/null
|
|
|
|
node ../core/boot.js \
|
|
--verbose \
|
|
--wikitest ../tests/wikitests/ \
|
|
|| exit 1
|
|
|
|
popd > /dev/null
|
|
|
|
# run jshint
|
|
jshint core
|