From 532f6a324cd33ffebe9a076117bba49731ace1d6 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Sat, 7 Aug 2021 17:12:54 +0900 Subject: [PATCH 1/2] =?UTF-8?q?Node.js=E3=81=AE=E3=83=90=E3=83=BC=E3=82=B8?= =?UTF-8?q?=E3=83=A7=E3=83=B3=E3=81=AE=E5=9B=BA=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit コミニュティ内での混乱を避ける目的で https://deb.nodesource.com/setup_14.x 等メジャーバージョンを明示 関連: #112 --- setup.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index a7eb521..3a7ea60 100755 --- a/setup.sh +++ b/setup.sh @@ -57,12 +57,14 @@ sudo apt-get -y update sudo apt-get -y upgrade # 各種ツールをインストール -curl -sL https://deb.nodesource.com/setup_lts.x | sudo -E bash - +curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash - sudo apt-get -y install fonts-noto-cjk uim uim-mozc nodejs apache2 arduino code vim emacs libnss3-tools # インストール失敗しやすいので2回 sudo apt-get -y install fonts-noto-cjk uim uim-mozc nodejs apache2 arduino code vim emacs libnss3-tools sudo apt-get -y autoremove +# Node.jsのバージョンの差異による不具合を防ぐ目的 +sudo apt-mark hold nodejs # 日本語設定 # デフォルトの設定が en_GB.UTF-8 になっている From 3e9c515b7ea3d74f9cef34f100ae62108ee3ee72 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Sat, 7 Aug 2021 17:16:53 +0900 Subject: [PATCH 2/2] =?UTF-8?q?Node.js=E3=83=90=E3=83=BC=E3=82=B8=E3=83=A7?= =?UTF-8?q?=E3=83=B3=E7=AE=A1=E7=90=86=E3=83=84=E3=83=BC=E3=83=ABn?= =?UTF-8?q?=E3=81=AE=E5=86=8D=E5=B0=8E=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit バージョンの変更手段 関連: #112 --- setup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.sh b/setup.sh index 3a7ea60..27ede9a 100755 --- a/setup.sh +++ b/setup.sh @@ -66,6 +66,9 @@ sudo apt-get -y autoremove # Node.jsのバージョンの差異による不具合を防ぐ目的 sudo apt-mark hold nodejs +# 利用者のNode.jsのバージョン管理目的 +sudo npm i n -g + # 日本語設定 # デフォルトの設定が en_GB.UTF-8 になっている sudo sed 's/#\sen_GB\.UTF-8\sUTF-8/en_GB\.UTF-8 UTF-8/g' /etc/locale.gen |\