〇インストール手順
以下のコマンドを実行します。
# install node.js
sudo apt-get -y install curl
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs
# install yarn
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get -y install yarn
# install prettier
sudo yarn global add prettier
〇テスト実行
$ echo '<!DOCTYPE html><html lang="ja"><head><meta charset="UTF-8"><title>sample</title></head><body>sample</body></html>' | prettier --stdin-filepath test.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>sample</title>
</head>
<body>
sample
</body>
</html>
〇動作確認環境
・Raspbian Buster
・Debian 10(Buster)
・Ubuntu 20.04
〇関連情報
・プロジェクトgithubリポジトリ
https://github.com/prettier/prettier
0 件のコメント:
コメントを投稿