mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-25 11:30:55 -08:00
And started using Bootstrap's responsive stylesheets, so we can start to look decent on phones
11 lines
294 B
Bash
Executable file
11 lines
294 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Build TiddlyWiki's CSS from source
|
|
|
|
recess --compile ./cssbuild/tiddlywiki.less > ./core/styles/tiddlywiki.css | exit
|
|
|
|
recess --compile ./cssbuild/twitter-bootstrap/less/responsive.less > ./core/styles/bootstrap-responsive.css | exit
|
|
|
|
# Call bld.sh to build TiddlyWiki
|
|
|
|
./bld.sh
|