publish.sh 1.14 KB
Newer Older
1
#!/bin/bash
Dan Abramov's avatar
Dan Abramov committed
2
# Copyright (c) 2015-present, Facebook, Inc.
Joe Haddad's avatar
Joe Haddad committed
3
4
5
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
Dan Abramov's avatar
Dan Abramov committed
6

7
8
9
10
# ******************************************************************************
# This releases an update to the `react-scripts` package.
# Don't use `npm publish` for it.
# Read the release instructions:
11
# https://github.com/facebook/create-react-app/blob/master/CONTRIBUTING.md#cutting-a-release
12
13
# ******************************************************************************

Dan Abramov's avatar
Dan Abramov committed
14
# Start in tasks/ even if run from root directory
Dan Abramov's avatar
Dan Abramov committed
15
16
17
18
19
20
21
22
23
24
25
26
cd "$(dirname "$0")"

# Exit the script on any command with non 0 return code
# We assume that all the commands in the pipeline set their return code
# properly and that we do not need to validate that the output is correct
set -e

# Echo every command being executed
set -x

# Go to root
cd ..
Dan Abramov's avatar
Dan Abramov committed
27
root_path=$PWD
Dan Abramov's avatar
Dan Abramov committed
28
29
30
31
32
33

if [ -n "$(git status --porcelain)" ]; then
  echo "Your git status is not clean. Aborting.";
  exit 1;
fi

Dan Abramov's avatar
Dan Abramov committed
34
35
36
37
# Compile
cd packages/react-error-overlay/
npm run build:prod
cd ../..
Dan Abramov's avatar
Dan Abramov committed
38
# Go!
39
./node_modules/.bin/lerna publish --independent "$@"