https://github.com/steebchen/smiler
simple compiler for scss/sass/js files
https://github.com/steebchen/smiler
Last synced: 4 months ago
JSON representation
simple compiler for scss/sass/js files
- Host: GitHub
- URL: https://github.com/steebchen/smiler
- Owner: steebchen
- License: mit
- Created: 2016-09-30T08:10:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-30T19:20:35.000Z (over 8 years ago)
- Last Synced: 2025-01-31T02:41:40.652Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# smiler (*sm*art comp*iler*)
**DISCLAIMER: This project is currently in development and it is not recommended to use it (yet).**
What?
Smiler searches for files which need to (scss, sass) or can be (js) compiled and puts them in one directory. You can specify a lot of options to customize behavior.## install
`npm i smiler --save // or save-dev when you only want to install it in your dev environment`## usage
```js
let smiler = require('smiler')smiler({}) // compiles all files in all directories into the directory 'public/'
```## api
You can customize behavior by specifying the following options when calling smiler:**start**: String | [String]
Start a specific task or use an array to start multiple tasks.Possible options: scss, js
```js
smiler({
start: 'scss'
})
```
or
```js
smiler({
start: ['scss', 'js']
})
```