Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aoliverwd/scss_manager
Bulk compile SCSS files
https://github.com/aoliverwd/scss_manager
Last synced: 2 months ago
JSON representation
Bulk compile SCSS files
- Host: GitHub
- URL: https://github.com/aoliverwd/scss_manager
- Owner: aoliverwd
- Created: 2024-06-11T18:41:37.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-31T13:07:14.000Z (4 months ago)
- Last Synced: 2024-08-31T13:48:27.024Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![PHPUnit](https://github.com/aoliverwd/scss_manager/actions/workflows/ci.yml/badge.svg) [![Latest Stable Version](https://poser.pugx.org/alexoliverwd/scss_manager/v)](//packagist.org/packages/alexoliverwd/scss_manager) [![License](https://poser.pugx.org/alexoliverwd/brace/license)](//packagist.org/packages/alexoliverwd/scss_manager)
# SCSS Manager
This package is currently in alpha. Complete documentation will be added on official release.
## Usage
```php
use SCSSWrapper\Controller\Compiler$compile = new Compiler([
'db_location' => __DIR__ . '/assets.db'
]);$compiled = $compile->compile([
__DIR__ . '/scss/one.scss',
__DIR__ . '/scss/two.scss'
], __DIR__ . '/compiled/homepage.css');
```