Skip to content

Commit

Permalink
Merge pull request #116 from gios/update-v8.2.0
Browse files Browse the repository at this point in the history
Update 8.2.0
  • Loading branch information
gios authored Oct 20, 2024
2 parents b3c0c61 + 2a93d3e commit 3b35e41
Show file tree
Hide file tree
Showing 7 changed files with 683 additions and 793 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ name: Build Package

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20, 21]
node-version: [20, 21, 22]

steps:
- name: Checkout Repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
node-version: [20, 21]
node-version: [20, 21, 22]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: '20.x'
node-version: 20
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
registry-url: https://registry.npmjs.org/
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.2.0] - 2024-10-19

### Added

- Support for Node.js 22.

## [8.1.0] - 2024-07-15

### Removed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Gzipper

[![Support Ukraine Badge](https://bit.ly/support-ukraine-now)](https://github.com/support-ukraine/support-ukraine)
[![Build Status](https://github.com/gios/gzipper/actions/workflows/build.yaml/badge.svg?branch=master)](https://github.com/gios/gzipper/actions)
[![Build Status](https://github.com/gios/gzipper/actions/workflows/build.yaml/badge.svg?branch=main)](https://github.com/gios/gzipper/actions)
[![npm version](https://badge.fury.io/js/gzipper.svg)](https://badge.fury.io/js/gzipper)

A tool for compressing files by means of
Expand Down Expand Up @@ -292,7 +292,7 @@ _(Could increase time of compression because of gathering additional metrics)_
Exclude file extensions from compression.
Compression extensions `br`, `gz`, `zz` and `zst` are
[excluded by default](https://github.com/gios/gzipper/blob/master/src/enums.ts#L9).
[excluded by default](https://github.com/gios/gzipper/blob/main/src/enums.ts#L9).
#### `-i`, `--include <extensions>`
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gzipper",
"version": "8.1.0",
"version": "8.2.0",
"description": "CLI for compressing files.",
"main": "index.js",
"type": "module",
Expand Down Expand Up @@ -36,27 +36,27 @@
},
"homepage": "https://github.com/gios/gzipper#readme",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@eslint/js": "^9.13.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.8",
"@types/node": "^22.7.7",
"copyfiles": "^2.4.1",
"eslint": "^9.4.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"tsx": "^4.15.7",
"typescript": "^5.4.5",
"typescript-eslint": "^7.14.1",
"vitest": "^1.3.0"
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=20.11.0"
},
"dependencies": {
"@gfx/zopfli": "^1.0.15",
"commander": "^12.1.0",
"simple-zstd": "^1.4.0"
"simple-zstd": "^1.4.2"
},
"packageManager": "[email protected]+sha256.50783dd0fa303852de2dd1557cd4b9f07cb5b018154a6e76d0f40635d6cee019"
}
Loading

0 comments on commit 3b35e41

Please sign in to comment.