1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-05 03:33:27 +00:00
TiddlyWiki5/run.sh
Jeremy Ruston a99f34fcae Cleaning up batch file locations
Bit of a pain that boot.js is sensitive to the current directory
2012-05-05 23:31:41 +01:00

18 lines
506 B
Bash
Executable File

#!/bin/sh
# run TiddlyWiki5
node ../core/boot.js --verbose --wikitest ../tests/wikitests/ || exit 1
# run jshint
jshint ../core/*.js
jshint ../core/modules/*.js
jshint ../core/modules/commands/*.js
jshint ../core/modules/macros/*.js
jshint ../core/modules/macros/edit/*.js
jshint ../core/modules/macros/edit/editors/*.js
jshint ../core/modules/parsers/*.js
jshint ../core/modules/parsers/wikitextparser/*.js
jshint ../core/modules/parsers/wikitextparser/rules/*.js
jshint ../core/modules/treenodes/*.js