Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
gios committed Jul 1, 2024
1 parent e9d3dc3 commit 8e7e0b1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [8.0.1] - 2024-07-01

### Updated

- README

## [8.0.0] - 2024-06-30

[BREAKING CHANGE] - works only on Node.js >= 20.11.0

### Updated

- Support for Node.js 20.
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,10 @@ Commands:
### Node.js Module
```javascript
const { Compress } = require('gzipper');
import { Compress } from "gzipper";
const gzip = new Compress('./src', './dist', {
verbose: true,
brotli: true,
deflate: true,
});
try {
Expand Down Expand Up @@ -567,7 +566,7 @@ I appreciate every contribution, just fork the repository and send the pull requ
## Support
- Node.js >= 14
- Node.js >= 20.11.0
## Prerequisites
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gzipper",
"version": "8.0.0",
"version": "8.0.1",
"description": "CLI for compressing files.",
"main": "index.js",
"type": "module",
Expand Down Expand Up @@ -52,7 +52,7 @@
"vitest": "^1.3.0"
},
"engines": {
"node": ">=20"
"node": ">=20.11.0"
},
"dependencies": {
"@gfx/zopfli": "^1.0.15",
Expand Down

0 comments on commit 8e7e0b1

Please sign in to comment.