# scss-compile

> A Sassy CSS Compiler

Latest version **0.1.7** (published 2015-09-03) · MIT license · 0 weekly downloads

## Install

```sh
npm install scss-compile
pnpm add scss-compile
yarn add scss-compile
bun add scss-compile
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.7 |
| Published | 2015-09-03 |
| First published | 2015-09-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Tyler A. Reckart |
| Maintainers | tylerreckart |
| Keywords | scss, sass, css, compiler |

## Links

- npm: https://www.npmjs.com/package/scss-compile
- Repository: https://github.com/tylerreckart/sass-compile
- Homepage: https://github.com/tylerreckart/sass-compile#readme
- Issues: https://github.com/tylerreckart/sass-compile/issues
- npm.io page: https://npm.io/package/scss-compile

## Dependencies (1)

- [npm-registry](https://npm.io/package/npm-registry.md) ^0.1.13

## Alternatives

- [style-dictionary](https://npm.io/package/style-dictionary.md) — 2.0M weekly downloads
- [postcss-merge-idents](https://npm.io/package/postcss-merge-idents.md) — 1.7M weekly downloads
- [@fontsource/noto-sans](https://npm.io/package/@fontsource/noto-sans.md) — 93.0K weekly downloads
- [uglifycss](https://npm.io/package/uglifycss.md) — 71.6K weekly downloads
- [mat4-interpolate](https://npm.io/package/mat4-interpolate.md) — 23.3K weekly downloads

## Recent versions

- 0.1.7 (latest) — 2015-09-03
- 0.1.6 — 2015-09-03
- 0.1.5 — 2015-09-03
- 0.1.4 — 2015-09-03

## README

# scss-compile

A simple npm package to compile SCSS into readable CSS

### Installation

Installation is super simple. Just run:
    
    npm install -g scss-compile

That's it!

## Usage

Running the package is also super easy. Once installed globally, you can run it from any directory. Just run:
   
     npm run scss-compile

## Additional Info

Depending on how you lay out your file structure, you will need to edit the `package.json` file. You'll have to edit the path next to the `"scss-compile"` command. 

### Example

This is the default path structure. I keep my styles located in an `assets` folder. If youre path is different, simply edit the starting point of the path
   
     ...
    "devDependencies": {},
    "scripts": {
      "test": "npm run scss-compile",

      "scss-compile": "node-sass -rw assets/scss -o assets/css",

      "watch": "npm run scss-compile"
     },
    ...

    ...
    "devDependencies": {};
    "scripts": {
      "test": "npm run scss-compile",

      "scss-compile": "node-sass -rw assets/stylesheets/scss -o assets/stylesheets/css".
      
      "watch": "npm run scss-compile"
    },
    ....

You can also edit the output path to wherever you want. Just edit the `assets/css` path in the `package.json` file.

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