mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-05 01:26:18 +00:00
16 lines
184 B
Bash
Executable File
16 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
|