forked from tensorflow/tfjs-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublish-npm.sh
executable file
·73 lines (60 loc) · 1.99 KB
/
publish-npm.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env bash
# Copyright 2019 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# =============================================================================
# Before you run this script, update the package.json to update versions and
# commit the PRs.
# Then:
# 1) Checkout the master branch of this repo.
# 2) Run this script as `./scripts/publish-npm.sh DIR_NAME`
# from the project base dir where DIR_NAME is the directory name of the
# package you want to publish, e.g. "posenet".
set -e
BRANCH=`git rev-parse --abbrev-ref HEAD`
ORIGIN=`git config --get remote.origin.url`
CHANGES=`git status --porcelain`
# Yarn in the top-level and in the directory,
yarn
cd $1
# Yarn above the other checks to make sure yarn doesn't change the lock file.
yarn
cd ..
PACKAGE_JSON_FILE="$1/package.json"
if ! test -f "$PACKAGE_JSON_FILE"; then
echo "$PACKAGE_JSON_FILE does not exist."
echo "Please pass the package name as the first argument."
exit 1
fi
if [ "$BRANCH" != "master" ]; then
echo "Error: Switch to the master branch before publishing."
exit
fi
if ! [[ "$ORIGIN" =~ tensorflow/tfjs-models ]]; then
echo "Error: Switch to the main repo (tensorflow/tfjs-models) before publishing."
exit
fi
if [ ! -z "$CHANGES" ];
then
echo "Make sure the master branch is clean. Found changes:"
echo $CHANGES
exit 1
fi
./scripts/make-version.js $1
cd $1
yarn build-npm
cd ..
./scripts/tag-version.js $1
cd $1
npm publish
echo 'Yay! Published a new package to npm.'