# smiler

> simple compiler for scss/sass/js files

Latest version **1.0.1** (published 2016-09-30) · MIT license · 0 weekly downloads

## Install

```sh
npm install smiler
pnpm add smiler
yarn add smiler
bun add smiler
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2016-09-30 |
| First published | 2016-09-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 7 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Luca Steeb |
| Maintainers | steebchen |
| Keywords | compiler, scss, sass, js |

## Links

- npm: https://www.npmjs.com/package/smiler
- Repository: https://github.com/steebchen/smiler
- Homepage: https://github.com/steebchen/smiler#readme
- Issues: https://github.com/steebchen/smiler/issues
- npm.io page: https://npm.io/package/smiler

## Dependencies (7)

- [gulp](https://npm.io/package/gulp.md) ^3.9.1
- [gulp-sass](https://npm.io/package/gulp-sass.md) ^2.3.2
- [gulp-clone](https://npm.io/package/gulp-clone.md) ^1.0.0
- [gulp-rename](https://npm.io/package/gulp-rename.md) ^1.2.2
- [gulp-clean-css](https://npm.io/package/gulp-clean-css.md) ^2.0.13
- [gulp-sourcemaps](https://npm.io/package/gulp-sourcemaps.md) ^1.6.0
- [gulp-autoprefixer](https://npm.io/package/gulp-autoprefixer.md) ^3.1.1

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 1.0.1 (latest) — 2016-09-30
- 1.0.0 — 2016-09-30

## 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']
})
```

---
_Source: https://npm.io/package/smiler · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
