{"id":15908027,"url":"https://github.com/blobfolio/guff","last_synced_at":"2026-03-06T06:05:58.232Z","repository":{"id":45684750,"uuid":"496822929","full_name":"Blobfolio/guff","owner":"Blobfolio","description":"A simple SASS/SCSS compiler and CSS parser/minifier for x86-64 Linux.","archived":false,"fork":false,"pushed_at":"2025-03-14T19:21:28.000Z","size":366,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-16T16:57:13.993Z","etag":null,"topics":["css","css-minifier","rust","sass","scsss"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"wtfpl","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Blobfolio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"Blobfolio"}},"created_at":"2022-05-27T01:22:17.000Z","updated_at":"2025-03-14T19:16:21.000Z","dependencies_parsed_at":"2025-02-26T05:22:27.703Z","dependency_job_id":"602bf7d4-1416-4223-9aca-621d14d4fb3b","html_url":"https://github.com/Blobfolio/guff","commit_stats":{"total_commits":185,"total_committers":1,"mean_commits":185.0,"dds":0.0,"last_synced_commit":"1c110cede6de36085c416c57aa64789c1d3bb10f"},"previous_names":[],"tags_count":50,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Blobfolio%2Fguff","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Blobfolio%2Fguff/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Blobfolio%2Fguff/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Blobfolio%2Fguff/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Blobfolio","download_url":"https://codeload.github.com/Blobfolio/guff/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244874399,"owners_count":20524577,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","css-minifier","rust","sass","scsss"],"created_at":"2024-10-06T14:08:54.831Z","updated_at":"2026-03-06T06:05:57.983Z","avatar_url":"https://github.com/Blobfolio.png","language":"Rust","funding_links":["https://github.com/sponsors/Blobfolio"],"categories":[],"sub_categories":[],"readme":"# Guff\n\n[![ci](https://img.shields.io/github/actions/workflow/status/Blobfolio/guff/ci.yaml?style=flat-square\u0026label=ci)](https://github.com/Blobfolio/guff/actions)\n[![deps.rs](https://deps.rs/repo/github/blobfolio/guff/status.svg?style=flat-square\u0026label=deps.rs)](https://deps.rs/repo/github/blobfolio/guff)\u003cbr\u003e\n[![license](https://img.shields.io/badge/license-wtfpl-ff1493?style=flat-square)](https://en.wikipedia.org/wiki/WTFPL)\n[![contributions welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square\u0026label=contributions)](https://github.com/Blobfolio/guff/issues)\n\nGuff is an x86-64 Linux CLI tool providing both SASS/SCSS compilation and CSS parsing/minification. It is a faster, lighter, compressier alternative to chaining together multiple tools like `sassc` and `csso`.\n\nUnder the hood, it merely marries the SCSS functionality of [grass](https://github.com/connorskees/grass) with the compressive capabilities of [Lightning CSS](lightningcss). If Guff is too opinionated for you or incompatible with your platform, take a look at those projects; they both have frontends of their own. ;)\n\n\n\n## Usage\n\nIt's easy; just give it a source and, optionally, a destination:\n```bash\nguff [FLAGS] [OPTIONS]\n```\n\n**Flags:**\n```text\n-h, --help        Print help information and exit.\n-V, --version     Print version information and exit.\n```\n\n**Options:**\n```text\n-b, --browsers \u003cSTR\u003e  A comma-separated list of specific browser/version pairs\n                      to target for CSS compatibility, like 'firefox 90, ie\n                      11'. Specifying versions released after guff was built\n                      has no effect.\n-i, --input \u003cFILE\u003e    The path to an SCSS or CSS source file.\n-o, --output \u003cFILE\u003e   The path to save the minified output to. If omitted,\n                      the result will be printed to STDOUT instead.\n```\n\nIf the input is SCSS, it will be compiled into CSS and then minified; if it is already CSS, it will just be minified.\n\n\n\n## Installation\n\nDebian and Ubuntu users can just grab the pre-built `.deb` package from the [latest release](https://github.com/Blobfolio/guff/releases/latest), and Arch users can grab it from [AUR](https://aur.archlinux.org/packages/guff-bin) (thanks @Dominiquini!).\n\nThis application is written in [Rust](https://www.rust-lang.org/) and can alternatively be built/installed from source using [Cargo](https://github.com/rust-lang/cargo):\n\n```bash\n# See \"cargo install --help\" for more options.\ncargo install \\\n    --git https://github.com/Blobfolio/guff.git \\\n    --bin guff\n```\n\n(This should work under other 64-bit Unix environments too, like MacOS.)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblobfolio%2Fguff","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblobfolio%2Fguff","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblobfolio%2Fguff/lists"}