-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathjavascript-setup.sh
executable file
·50 lines (36 loc) · 1.25 KB
/
javascript-setup.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
#!/usr/bin/env bash
#
# Copyright © 2017 Viro Media. All rights reserved.
#
# NOTE: this script is executed at the root of the new project
#!/bin/bash
VIRO_PROJECT_NAME=$1 # The name of the user's project. The cwd should be already here.
VIRO_VERBOSE=$2 # True/False whether or not the user ran init w/ --verbose option
isosx() {
if [[ $OSTYPE == darwin* ]]; then
return 0 # in bash 0 is true!
else
return 1
fi
}
vsed() {
if isosx; then
/usr/bin/sed -i '' "$@"
else
sed -i "$@"
fi
}
echo "==== Running Javascript Setup Script ==="
echo "Copying over HelloWorld files"
cp -r ./node_modules/react-viro/bin/files/javascript/* .
# replace APP_NAME_HERE with actual app names
vsed "s/APP_NAME_HERE/$VIRO_PROJECT_NAME/" index.*
# update the package.json to run the ngrok script
TARGET_FILEPATH=package.json
SEARCH_PATTERN="scripts"
LINE_TO_APPEND_AFTER=$(grep "$SEARCH_PATTERN" "$TARGET_FILEPATH")
LINE_TO_APPEND_AFTER=$(echo $LINE_TO_APPEND_AFTER | sed -e 's/[]\/$*.^|[]/\\&/g')
LINE_TO_ADD=" \"prestart\": \"./node_modules/react-viro/bin/run_ngrok.sh\","
LINE_TO_ADD=$(echo $LINE_TO_ADD | sed -e 's/[]\/$*.^|[]/\\&/g')
vsed "s/$LINE_TO_APPEND_AFTER/&"$'\\\n'"$LINE_TO_ADD/" $TARGET_FILEPATH
chmod +x ./node_modules/react-viro/bin/run_ngrok.sh