{"id":13798677,"url":"https://github.com/HebiRobotics/sass-cli-maven-plugin","last_synced_at":"2025-05-13T06:31:31.830Z","repository":{"id":50589633,"uuid":"519325882","full_name":"HebiRobotics/sass-cli-maven-plugin","owner":"HebiRobotics","description":"Maven plugin for wrapping the sass cli","archived":false,"fork":false,"pushed_at":"2024-01-16T15:22:57.000Z","size":41,"stargazers_count":13,"open_issues_count":0,"forks_count":3,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-08-04T00:03:23.851Z","etag":null,"topics":["css","javafx","maven","maven-plugin","sass"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HebiRobotics.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.adoc","contributing":null,"funding":null,"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}},"created_at":"2022-07-29T19:18:22.000Z","updated_at":"2024-05-14T21:26:52.000Z","dependencies_parsed_at":"2024-01-15T11:11:04.361Z","dependency_job_id":"64cc5ed0-37eb-4b1b-aa78-055c1d5709db","html_url":"https://github.com/HebiRobotics/sass-cli-maven-plugin","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HebiRobotics%2Fsass-cli-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HebiRobotics%2Fsass-cli-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HebiRobotics%2Fsass-cli-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HebiRobotics%2Fsass-cli-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HebiRobotics","download_url":"https://codeload.github.com/HebiRobotics/sass-cli-maven-plugin/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225183756,"owners_count":17434170,"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","javafx","maven","maven-plugin","sass"],"created_at":"2024-08-04T00:00:49.553Z","updated_at":"2025-05-13T06:31:31.804Z","avatar_url":"https://github.com/HebiRobotics.png","language":"Java","funding_links":[],"categories":["Community"],"sub_categories":["Tools"],"readme":"# sass-cli-maven-plugin\n\nThis Maven plugin is a thin wrapper around the [Sass](https://sass-lang.com/) commandline interface for generating CSS files. It downloads an appropriate native executable and executes it with the specified arguments. Please refer to [Sass CLI](https://sass-lang.com/documentation/cli/dart-sass) for documentation.\n\n## Maven Example\n\n```xml\n\u003cbuild\u003e\n    \u003cplugins\u003e\n        \u003cplugin\u003e\n            \u003cgroupId\u003eus.hebi.sass\u003c/groupId\u003e\n            \u003cartifactId\u003esass-cli-maven-plugin\u003c/artifactId\u003e\n            \u003cversion\u003e1.0.4\u003c/version\u003e\n            \u003cconfiguration\u003e\n                \u003csassVersion\u003e1.87.0\u003c/sassVersion\u003e\n                \u003cargs\u003e \u003c!-- Any argument that should be forwarded to the sass cli --\u003e\n                    \u003carg\u003e${project.basedir}/src/scss/input.scss:${project.basedir}/target/classes/output.css\u003c/arg\u003e\n                    \u003carg\u003e${project.basedir}/src/scss/input2.scss:${project.basedir}/target/classes/output2.css\u003c/arg\u003e\n                    \u003carg\u003e--no-source-map\u003c/arg\u003e\n                \u003c/args\u003e\n            \u003c/configuration\u003e\n            \u003cexecutions\u003e\n                \u003cexecution\u003e\n                    \u003cid\u003esass-exec\u003c/id\u003e\n                    \u003cphase\u003egenerate-resources\u003c/phase\u003e\n                    \u003cgoals\u003e\n                        \u003cgoal\u003erun\u003c/goal\u003e\n                    \u003c/goals\u003e\n                \u003c/execution\u003e\n            \u003c/executions\u003e\n        \u003c/plugin\u003e\n    \u003c/plugins\u003e\n\u003c/build\u003e\n```\n\n## Enabling Watch Mode\n\nThe `sass` CLI tool includes a `--watch` mode that continuously triggers a re-compilation whenever a used file changes. You can add the argument by running the `sass:watch` goal, or by specifying the `sass.watch` property.\n\n```shell\n# goal\nmvn sass-cli:watch\n\n# property\nmvn package -Dsass.watch\n```\n\n## Sass Version\n\nSass updates more often than this plugin, so it is recommended to manually specify the latest version. You can do this via the `sassVersion` argument or the `sass.version` property. Available versions can be found on [Github Releases](https://github.com/sass/dart-sass/releases/).\n\n```xml\n\u003cproperties\u003e\n    \u003csass.version\u003e1.87.0\u003c/sass.version\u003e\n\u003c/properties\u003e\n```\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd valign=\"middle\"\u003e\n      The latest release is\n    \u003c/td\u003e\n    \u003ctd valign=\"middle\"\u003e\n      \u003ca href=\"https://pub.dartlang.org/packages/sass\"\u003e\u003cimg alt=\"Pub version\" src=\"https://img.shields.io/pub/v/sass.svg\"\u003e\u003c/a\u003e\n    \u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHebiRobotics%2Fsass-cli-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FHebiRobotics%2Fsass-cli-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHebiRobotics%2Fsass-cli-maven-plugin/lists"}