# build-gzip

> Compress static assets after compilation

Latest version **0.0.2** (published 2016-08-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install build-gzip
pnpm add build-gzip
yarn add build-gzip
bun add build-gzip
```

## 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.0.2 |
| Published | 2016-08-25 |
| First published | 2016-08-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Vinson Chuong |
| Maintainers | vinsonchuong |

## Links

- npm: https://www.npmjs.com/package/build-gzip
- Repository: https://github.com/vinsonchuong/build-gzip
- Issues: https://github.com/vinsonchuong/build-gzip/issues
- npm.io page: https://npm.io/package/build-gzip

## Dependencies (2)

- [babel-runtime](https://npm.io/package/babel-runtime.md) ^6.5
- [directory-helpers](https://npm.io/package/directory-helpers.md) ^0.1.3

## Recent versions

- 0.0.2 (latest) — 2016-08-25
- 0.0.1 — 2016-08-25

## README

# build-gzip
[![Build Status](https://travis-ci.org/vinsonchuong/build-gzip.svg?branch=master)](https://travis-ci.org/vinsonchuong/build-gzip)

Compress static assets after compilation

## Installing
`build-gzip` is available as an
[npm package](https://www.npmjs.com/package/build-gzip).

## Usage
Add `build-bin` and `build-gzip` to the `package.json`.

```json
{
  "name": "project",
  "private": true,
  "scripts": {
    "build": "build"
  },
  "devDependencies": {
    "build-bin": "^0.0.6",
    "build-gzip": "^0.0.1"
  }
}
```

From the command line, run:
```bash
npm run build
```

`build-gzip` will compress all files in the `dist` directory into new files
suffixed with `.gz`. `build-bin` will ensure that compilation plugins run first
before this compression plugin.

## Development
### Getting Started
The application requires the following external dependencies:
* Node.js

The rest of the dependencies are handled through:
```bash
npm install
```

Run tests with:
```bash
npm test
```

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