# aurora-utilities

> Sass and JavaScript utilities for all your front end projects.

Latest version **2.0.2** (published 2020-03-04) · ISC license · 0 weekly downloads

## Install

```sh
npm install aurora-utilities
pnpm add aurora-utilities
yarn add aurora-utilities
bun add aurora-utilities
```

## 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 | 2.0.2 |
| Published | 2020-03-04 |
| First published | 2018-04-28 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 842.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Carrie Forde |
| Maintainers | carrieforde |
| Keywords | sass, utilities |

## Links

- npm: https://www.npmjs.com/package/aurora-utilities
- Repository: https://github.com/carrieforde/Aurora-Utilities
- Homepage: https://github.com/carrieforde/Aurora-Utilities#readme
- Issues: https://github.com/carrieforde/Aurora-Utilities/issues
- npm.io page: https://npm.io/package/aurora-utilities

## Dependencies (1)

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

## Recent versions

- 2.0.2 (latest) — 2020-03-04
- 2.0.1 — 2020-03-04
- 2.0.0 — 2020-03-04
- 1.2.3 — 2018-12-26
- 1.2.2 — 2018-12-26
- 1.2.1 — 2018-12-02
- 1.2.0 — 2018-12-02
- 1.1.0 — 2018-04-30
- 1.0.2 — 2018-04-28
- 1.0.1 — 2018-04-28
- 1.0.0 — 2018-04-28

## README

# Aurora Utilities

Sass and JavaScript utilities for all your front end projects.

## Features

This package is collection of helpful Sass utilities that keep you focused on building new features instead of recreating the wheel over and over.

The Sass included in this package only outputs what you use, so there is no need to worry adding bloat to your project.

### Sass

Aurora Utilities comes bundled with a set of helpful Sass functions and mixins that makes writing styles a breeze.

## Installation

Add Aurora Utilities as a project dependency:

```sh
npm install --save-dev aurora-utilities
```

### Sass Usage

1.  For Sass use, you'll need to add Aurora Utilities to your node-sass `includePaths`:

    **Webpack example using `sass-loader`:**

    ```js
    {
      loader: 'sass-loader',
      options: {
        sassOptions: {
        includePaths: [
          'aurora-utilities',
        ],
        }
        sourceMap: true
      }
    }
    ```

    **Gulp example using `gulp-sass`:**

    ```js
    gulp.task('sass', function() {
      return gulp.
        .pipe(sass( {
          includePaths: [
            'node_modules/aurora-utilities/sass',
            'node_modules/sanitize.scss'
          ]
        }))
    });
    ```

2.  Import `aurora-utilities` into your main sass file:

    ```scss
    @import 'aurora-utilities';
    ```

3.  Use the bundled functions and mixins as required:

    ```scss
    .link {
      @include link($primary, $accent);
      @include decorative-link('\u007');
    }
    ```

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