From 73d301e63f883bf7491b100406da9aa7715d17de Mon Sep 17 00:00:00 2001 From: Jermolene Date: Sat, 9 Nov 2013 10:54:10 +0000 Subject: [PATCH] Update the deploy script to publish to NPM Which means that I'll only be deploying when there's a version bump. Which means that I'll be deploying new versions multiple times a day sometimes. --- deploy.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/deploy.sh b/deploy.sh index 8b3768cb6..7c392005c 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,12 +1,11 @@ #!/bin/bash +# Publish to NPM + +npm publish || exit 1 + # Deploy latest build to github -# This deployment script needs several improvements: - -# 1) deploying to NPM -# 2) deploying to TiddlySpace - pushd ../jermolene.github.com git add --all || exit 1