{"id":18706425,"url":"https://github.com/chisel/ease-task-sass","last_synced_at":"2025-11-09T07:30:35.653Z","repository":{"id":34985841,"uuid":"194452647","full_name":"chisel/ease-task-sass","owner":"chisel","description":"SASS preprocessor for Ease task manager.","archived":false,"fork":false,"pushed_at":"2022-12-09T16:11:43.000Z","size":191,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-29T00:47:12.453Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chisel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-06-29T22:13:43.000Z","updated_at":"2021-02-14T13:25:58.000Z","dependencies_parsed_at":"2023-01-15T11:31:02.729Z","dependency_job_id":null,"html_url":"https://github.com/chisel/ease-task-sass","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chisel%2Fease-task-sass","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chisel%2Fease-task-sass/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chisel%2Fease-task-sass/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chisel%2Fease-task-sass/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chisel","download_url":"https://codeload.github.com/chisel/ease-task-sass/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239571542,"owners_count":19661164,"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":[],"created_at":"2024-11-07T12:14:05.517Z","updated_at":"2025-02-18T23:43:01.557Z","avatar_url":"https://github.com/chisel.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ease Task Runner SASS Plugin\n\nThis is a plugin for the [Ease task runner](https://github.com/chisel/ease). It uses the NPM [sass](https://github.com/sass/node-sass) module to process SASS file into CSS.\n\n# Installation\n\n```\nnpm install ease-task-sass --save-dev\n```\n\n**easeconfig.js:**\n```js\nconst sass = require('ease-task-sass');\n\nmodule.exports = ease =\u003e {\n\n  ease.install('sass', sass, {});\n\n};\n```\n\n# Configuration\n\nThis plugin takes a config object similar to [SASS Options](https://github.com/sass/node-sass#options) while ignoring `file`, `outFile`, and `data` properties. Instead, the following properties are added to the options object:\n  - `dir`: Path to a directory containing all the SASS files, relative to `easeconfig.js`\n  - `outDir`: Path to the output directory where the CSS files should be written, relative to `easeconfig.js`\n  - `cleanOutDir`: Boolean indicating if the output directory should be emptied first\n\n# Example\n\n**easeconfig.js:**\n```js\nconst sass = require('ease-task-sass');\n\nmodule.exports = ease =\u003e {\n\n  ease.install('sass', sass, {\n    dir: 'sass',\n    outDir: 'css',\n    sourceMap: true,\n    cleanOutDir: true\n  });\n\n  ease.job('process-sass-files', ['sass']);\n\n};\n```\n\n**CLI:**\n```\nease process-sass-files\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchisel%2Fease-task-sass","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchisel%2Fease-task-sass","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchisel%2Fease-task-sass/lists"}