-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Broken styles when built on GitHub Actions
The GitHub Actions build was running a newer version of Tailwind CSS and thus the problem was not visible locally.
- Loading branch information
Showing
3 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"scripts": { | ||
"dev": "npx tailwindcss -i ./main.css -o ./public/main.out.css --watch", | ||
"dev": "tailwindcss -i ./main.css -o ./public/main.out.css --watch", | ||
"serve": "http-server .", | ||
"build": "npx tailwindcss -i main.css -o ./public/main.out.css" | ||
"build": "tailwindcss -i main.css -o ./public/main.out.css" | ||
}, | ||
"devDependencies": { | ||
"http-server": "^14.1.1", | ||
"tailwindcss": "^3.4.1" | ||
"tailwindcss": "^3.4.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters