https://github.com/aoliverwd/scss_manager
Bulk compile SCSS files
https://github.com/aoliverwd/scss_manager
Last synced: about 1 month 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-17T07:08:58.000Z (6 months ago)
- Last Synced: 2025-07-20T08:03:22.416Z (5 months ago)
- Language: PHP
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
 [](//packagist.org/packages/alexoliverwd/scss_manager) [](//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');
```