Skip to content

Commit 056940e

Browse files
committed
Release 5.0.0 version
1 parent 9c9237d commit 056940e

File tree

3 files changed

+5
-29
lines changed

3 files changed

+5
-29
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -50,30 +50,3 @@ jobs:
5050
run: pnpm install --frozen-lockfile --ignore-scripts
5151
- name: Run unit tests
5252
run: pnpm unit
53-
old:
54-
runs-on: ubuntu-latest
55-
strategy:
56-
matrix:
57-
node-version:
58-
- 18
59-
- 16
60-
- 14
61-
- 12
62-
name: Node.js ${{ matrix.node-version }} Quick
63-
steps:
64-
- name: Checkout the repository
65-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
66-
- name: Install pnpm
67-
uses: pnpm/action-setup@8e1abe543ff1fa17b5d36e08ed01b4a1e4c31eb4 # v1.2.1
68-
with:
69-
version: 3
70-
env:
71-
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
72-
- name: Install Node.js ${{ matrix.node-version }}
73-
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
74-
with:
75-
node-version: ${{ matrix.node-version }}
76-
- name: Install dependencies
77-
run: pnpm install --no-frozen-lockfile --ignore-scripts
78-
- name: Run unit tests
79-
run: pnpm unit

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Change Log
22
This project adheres to [Semantic Versioning](http://semver.org/).
33

4+
## 5.0.0
5+
* Removed Node.js 12, 14, 16, 18 support.
6+
47
## 4.1.0
58
* Added `stringifyImportant` option (by @Liang5757).
69

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-js",
3-
"version": "4.1.0",
3+
"version": "5.0.0",
44
"description": "PostCSS for CSS-in-JS and styles in JS objects",
55
"keywords": [
66
"postcss",
@@ -21,7 +21,7 @@
2121
"test": "pnpm run /^test:/"
2222
},
2323
"engines": {
24-
"node": "^12 || ^14 || >= 16"
24+
"node": "^20 || ^22 || >= 24"
2525
},
2626
"exports": {
2727
".": {

0 commit comments

Comments
 (0)