Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ For detailed information on issue and pull request statuses, process for testing

## Set up

You will need at least [Node >= 18.19.0](https://nodejs.org/en) installed on your machine.
You will need at least [Node >= 20.19.0](https://nodejs.org/en) installed on your machine.

Once you have the minimum Node version installed, you can continue with the rest of the repo setup.

```shell
node -v
v18.19.1
v20.19.0

git clone https://github.com/IgniteUI/igniteui-webcomponents.git
cd igniteui-webcomponents
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -32,7 +32,7 @@ jobs:
- run: npm run test
- run: npm run check
- name: Publish to coveralls.io
if: matrix.node-version == '18.x'
if: matrix.node-version == '20.x'
uses: coverallsapp/github-action@v2
with:
github-token: ${{ github.token }}
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
getVsCodeCssCustomData,
getVsCodeHtmlCustomData,
} from 'custom-element-vs-code-integration';
import customElements from '../custom-elements.json' assert { type: 'json' };
import customElements from '../custom-elements.json' with { type: 'json' };
import report from './report.mjs';
import { buildComponents, buildThemes } from './sass.mjs';

Expand Down