We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
開発環境コンテナ Dockerfile
murchace/.devcontainer/Dockerfile
Line 12 in 6e1ffb1
tailwindcss
.tailwindcss-version
#37 の一環で、 main にマージする前に出力CSSファイルの整合性を確かめるつもりです。なので、本番環境 Dockerfile
murchace/Dockerfile
Lines 5 to 13 in 6e1ffb1
static/styles.min.css
The text was updated successfully, but these errors were encountered:
テストでビルドするときに容易にバージョンを変更できるようにARGを使うというのも浮かんだんですが, .tailwindcss-version という名前のファイルを用意するのとどちらのほうが良さそうですかね? https://docs.docker.jp/engine/reference/builder.html#arg
Sorry, something went wrong.
#43 でバイナリをインストールしてくれる https://github.com/timonweb/pytailwindcss を追加しました。これで、バージョンを環境変数 $TAILWINDCSS_VERSION で指定できるようになります。#43 では justfile に直書きしてますが、just TAILWINDCSS_VERSION=latest tailwind-watch で最新版のtailwindcssバイナリを自動でインストールして実行もしてくれます。
just TAILWINDCSS_VERSION=latest tailwind-watch
バージョン取得は↓のコマンドでいけます:
$ just -c env | grep TAILWINDCSS_VERSION | cut -d= -f2 v3.4.11
このやり方がいいのかは自分でもまだ分からないですけど...
#60 のワークフローで、生成されたCSSファイルをCIテストできるようになったので閉じます。
No branches or pull requests
開発環境コンテナ Dockerfile
murchace/.devcontainer/Dockerfile
Line 12 in 6e1ffb1
tailwindcss
バイナリのダウンロードリンクが latest になっていて、バージョン違いで出力CSSファイルの内容が異なる現象が発生するかもしれないです。そこで、バージョンアップグレードを容易にすることも加味して、Tailwind CSS の使用バージョンを見える形で保存し、 Dockerfile でその値を読み取るようにしたいです。.tailwindcss-version
という名前のファイルを用意するのが良いと思います。#37 の一環で、 main にマージする前に出力CSSファイルの整合性を確かめるつもりです。なので、本番環境 Dockerfile
murchace/Dockerfile
Lines 5 to 13 in 6e1ffb1
tailwindcss
バイナリのインストールとstatic/styles.min.css
の生成をする必要はないです。The text was updated successfully, but these errors were encountered: