Skip to content

Commit aecd7a9

Browse files
taxookimromandev
authored andcommittedNov 14, 2017
Upgrade Node.js (v6.9.5 -> v8.9.1) (#520)
Upgrade Node.js (v6.9.5 -> v8.9.1) ISSUE=#518
1 parent 654436b commit aecd7a9

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed
 

‎AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Jaeseok Yoon <yjaeseok@gmail.com>
2525
Jinho Bang <zino@chromium.org>
2626
Jongheon Kim <sapzape@gmail.com>
2727
Taeyun Kim <twhy.kim@gmail.com>
28+
Taxoo Kim <taxookim@gmail.com>
2829
Umar Faruk <umar97faruk@gmail.com>
2930
Wuseok Jang <rufia00@gmail.com>
3031
Yeonsu Kim <yeonsuyam@gmail.com>

‎bootstrap/absolute.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,10 @@ set_path_env $(absolute_path)/node_modules/.bin
3131
sync_node
3232
sync_mongodb
3333

34-
# NPM update
35-
if [ ! -f .pkg_timestamp ] || [ package.json -nt .pkg_timestamp ]; then
34+
# NPM install or update
35+
if [ ! -f .pkg_timestamp ]; then
36+
npm install && > .pkg_timestamp
37+
elif [ package.json -nt .pkg_timestamp ]; then
3638
npm update && > .pkg_timestamp
3739
fi
3840

‎bootstrap/common/sync_third_party.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919

2020
function sync_node() {
2121
local target_path="./third_party/node"
22-
local base_url="https://nodejs.org/dist/v6.9.5"
22+
local base_url="https://nodejs.org/dist/v8.9.1"
2323

2424
case $(get_platform_name) in
25-
windows_x86) local target_url="/node-v6.9.5-win-x86.zip" ;;
26-
windows_x86_64) local target_url="/node-v6.9.5-win-x64.zip" ;;
27-
linux_x86) local target_url="/node-v6.9.5-linux-x86.tar.gz" ;;
28-
linux_x86_64) local target_url="/node-v6.9.5-linux-x64.tar.gz" ;;
29-
darwin_x86_64) local target_url="/node-v6.9.5-darwin-x64.tar.gz" ;;
25+
windows_x86) local target_url="/node-v8.9.1-win-x86.zip" ;;
26+
windows_x86_64) local target_url="/node-v8.9.1-win-x64.zip" ;;
27+
linux_x86) local target_url="/node-v8.9.1-linux-x86.tar.gz" ;;
28+
linux_x86_64) local target_url="/node-v8.9.1-linux-x64.tar.gz" ;;
29+
darwin_x86_64) local target_url="/node-v8.9.1-darwin-x64.tar.gz" ;;
3030
esac
3131

3232
sync_third_party $base_url$target_url $target_path

0 commit comments

Comments
 (0)
Please sign in to comment.