mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 10:07:19 +00:00
Bring over remaining scripts from build.jermolene.github.io
This commit is contained in:
parent
067e8a9f94
commit
9244a2f4fd
7
bin/npm-publish.sh
Executable file
7
bin/npm-publish.sh
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# publish to npm
|
||||||
|
|
||||||
|
./bin/clean.sh
|
||||||
|
|
||||||
|
npm publish || exit 1
|
8
bin/quick-bld.sh
Executable file
8
bin/quick-bld.sh
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Abbreviated build script for building prerelease
|
||||||
|
|
||||||
|
tiddlywiki editions/prerelease \
|
||||||
|
--verbose \
|
||||||
|
--build favicon index \
|
||||||
|
|| exit 1
|
17
bin/verbump.sh
Executable file
17
bin/verbump.sh
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Bump to a new version number
|
||||||
|
|
||||||
|
if [ -z "$1" ]
|
||||||
|
then
|
||||||
|
echo "Missing version (eg '5.1.38-prerelease')"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Set the new version number (will also commit and tag the release)
|
||||||
|
|
||||||
|
npm version $1 -m "Version number update for $1" || exit 1
|
||||||
|
|
||||||
|
# Make sure our tags are pushed to the origin server
|
||||||
|
|
||||||
|
git push origin --tags || exit 1
|
Loading…
Reference in New Issue
Block a user