Skip to content

Commit

Permalink
Update minify api
Browse files Browse the repository at this point in the history
support nested css
  • Loading branch information
lazuee committed Jul 30, 2024
1 parent 41a8bc5 commit 1c6e395
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,25 @@ jobs:
- run: |
find . -name "*.css" -not -path "./dist/*" | while IFS= read -r file; do
content=$(cat "$file")
result=$(curl -s -X POST --data-urlencode "input=$content" 'https://www.toptal.com/developers/cssminifier/api/raw')
dest_dir="dist/$(dirname "$file")"
mkdir -p "$dest_dir" && echo "$result" > "$dest_dir/$(basename "$file")"
content=$(jq -Rs . <<< "$content")
response=$(curl -s -X POST --data-urlencode "json=$content" 'https://minifycss.io/ajax/minify_text')
if jq -e . >/dev/null 2>&1 <<<"$response"; then
result=$(echo "$response" | jq -r '.data.minified')
if [ "$result" != "null" ] && [ -n "$result" ]; then
dest_dir="dist/$(dirname "$file")"
mkdir -p "$dest_dir"
echo "$result" > "$dest_dir/$(basename "$file")"
echo "Successfully minified $file"
else
echo "Error: Minification failed for $file. Using original content."
mkdir -p "dist/$(dirname "$file")"
cp "$file" "dist/$file"
fi
else
echo "Error: Invalid JSON response for $file. Using original content."
mkdir -p "dist/$(dirname "$file")"
cp "$file" "dist/$file"
fi
done
shell: bash
- uses: JamesIves/github-pages-deploy-action@v4
Expand Down

0 comments on commit 1c6e395

Please sign in to comment.