https://github.com/aoliverwd/scss_manager
Bulk compile SCSS files
https://github.com/aoliverwd/scss_manager
Last synced: 3 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-15T11:03:35.000Z (8 months ago)
- Last Synced: 2025-03-26T19:11:12.656Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 64.5 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');
```