diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 106310c5..93ea8970 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 16 cache: 'yarn' - name: install run: yarn install diff --git a/.github/workflows/npm-run-test.yml b/.github/workflows/npm-run-test.yml index 016ac7ad..fe0b8e00 100644 --- a/.github/workflows/npm-run-test.yml +++ b/.github/workflows/npm-run-test.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x] + node-version: [16.x, 18.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: diff --git a/.vscode/settings.json b/.vscode/settings.json index 63ec24df..5bde7840 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,5 @@ { "editor.codeActionsOnSave": { - "source.fixAll.eslint": true + "source.fixAll.eslint": "explicit" } } \ No newline at end of file diff --git a/History.md b/History.md index 1202e6af..5d07adc3 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,8 @@ +4.3.3 / 2024-01-24 +================== + + * Update export property #271 + 4.3.2 / 2023-11-28 ================== diff --git a/package.json b/package.json index 9ae4fedf..cc37004c 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,13 @@ { "name": "@adobe/css-tools", - "version": "4.3.2", + "version": "4.3.3", "description": "CSS parser / stringifier", "source": "src/index.ts", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "exports": { "import": "./dist/index.mjs", + "types": "./dist/types.d.ts", "require": "./dist/index.cjs" }, "types": "./dist/types.d.ts",