Skip to content

Commit a1f9cac

Browse files
holblinJean-Philippe Zolesio
and
Jean-Philippe Zolesio
authored
Release 4.3.3 (#274)
Co-authored-by: Jean-Philippe Zolesio <[email protected]>
1 parent de14b54 commit a1f9cac

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.github/workflows/npm-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: actions/setup-node@v3
1414
with:
15-
node-version: 14
15+
node-version: 16
1616
cache: 'yarn'
1717
- name: install
1818
run: yarn install

.github/workflows/npm-run-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [14.x, 16.x]
19+
node-version: [16.x, 18.x]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
steps:

.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"editor.codeActionsOnSave": {
3-
"source.fixAll.eslint": true
3+
"source.fixAll.eslint": "explicit"
44
}
55
}

History.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
4.3.3 / 2024-01-24
2+
==================
3+
4+
* Update export property #271
5+
16
4.3.2 / 2023-11-28
27
==================
38

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
22
"name": "@adobe/css-tools",
3-
"version": "4.3.2",
3+
"version": "4.3.3",
44
"description": "CSS parser / stringifier",
55
"source": "src/index.ts",
66
"main": "./dist/index.cjs",
77
"module": "./dist/index.mjs",
88
"exports": {
99
"import": "./dist/index.mjs",
10+
"types": "./dist/types.d.ts",
1011
"require": "./dist/index.cjs"
1112
},
1213
"types": "./dist/types.d.ts",

0 commit comments

Comments
 (0)