Skip to content

Commit 927da64

Browse files
committed
Update dependencies
1 parent d0e98f5 commit 927da64

File tree

7 files changed

+8764
-1988
lines changed

7 files changed

+8764
-1988
lines changed

.gitattributes

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
* text=auto
1+
# Enforce Unix newlines
2+
* text=auto eol=lf

.github/workflows/test.yml

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: Tests
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- "**"
7+
- "!dependabot/**"
8+
pull_request:
9+
workflow_dispatch:
410

511
env:
612
FORCE_COLOR: 2
@@ -13,15 +19,17 @@ jobs:
1319
strategy:
1420
fail-fast: false
1521
matrix:
16-
node: [10, 12, 14]
1722
os: [ubuntu-latest, windows-latest]
23+
node: [14, 16, 18, 20]
1824

1925
steps:
2026
- name: Clone repository
21-
uses: actions/checkout@v2
27+
uses: actions/checkout@v3
28+
with:
29+
persist-credentials: false
2230

2331
- name: Set up Node.js
24-
uses: actions/setup-node@v2
32+
uses: actions/setup-node@v3
2533
with:
2634
node-version: ${{ matrix.node }}
2735

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lockfile-version=2

CHANGELOG

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v5.0.0:
2+
date: 2023-05-01
3+
changes:
4+
- Update dependencies.
5+
- Drop Node.js < 14 support.
16
v4.0.0:
27
date: 2021-02-15
38
changes:

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ cssmin: {
8686

8787
## Release History
8888

89+
* 2023-05-01   v5.0.0   Update dependencies. Drop Node.js < 14 support.
8990
* 2021-02-15   v4.0.0   Update all dependencies including clean-css v5.x. Drop Node.js < 10 support.
9091
* 2018-09-07   v3.0.0   Update all dependencies. Drop Node.js < 6 support.
9192
* 2017-07-27   v2.2.1   Fix issue with `relativeTo` for clean-css v4.x.
@@ -123,4 +124,4 @@ cssmin: {
123124

124125
Task submitted by [Tim Branyen](http://tbranyen.com/)
125126

126-
*This file was generated on Mon Feb 15 2021 07:31:26.*
127+
*This is a generated file.*

0 commit comments

Comments
 (0)