Skip to content
Open
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
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
}
],
"rules": {
"@typescript-eslint/strict-boolean-expressions": "off"
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/consistent-type-imports": "error"
},
"settings": {
"mdx/code-blocks": true,
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14.21.3]
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -31,6 +31,7 @@ jobs:
run: npm run lint:check
- name: Testing JEST
run: npm run test

release:
if: github.ref == 'refs/heads/main'
needs: test
Expand All @@ -39,7 +40,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14.21.3
node-version: 18.18.0
cache: 'npm'
- uses: webfactory/ssh-agent@v0.7.0
with:
Expand Down Expand Up @@ -76,7 +77,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 14.21.3
node-version: 18.18.0
cache: 'npm'
- uses: webfactory/ssh-agent@v0.7.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.21.3
18.18.0
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
# [1.33.0](https://github.com/eclass/ui-kit/compare/v1.32.0...v1.33.0) (2023-10-05)


### Features

* **tertiary:** icono custom ([#604](https://github.com/eclass/ui-kit/issues/604)) ([0ec4a9f](https://github.com/eclass/ui-kit/commit/0ec4a9f9748a1e904d9cbaf93db71ccd97bf879f))

# [1.32.0](https://github.com/eclass/ui-kit/compare/v1.31.0...v1.32.0) (2023-09-28)


### Features

* **update:** change versions of vite, node, react and all library ([#599](https://github.com/eclass/ui-kit/issues/599)) ([7924760](https://github.com/eclass/ui-kit/commit/792476003f67bfb0dae00a2962853b6f62a0286f))
* **update:** change versions of vite, node, react and all librarys ([#593](https://github.com/eclass/ui-kit/issues/593)) ([38de1c6](https://github.com/eclass/ui-kit/commit/38de1c670ec3eb63eb544425dd4a98eb92689c19))

# [1.31.0](https://github.com/eclass/ui-kit/compare/v1.30.0...v1.31.0) (2023-09-15)


### Bug Fixes

* **alert:** margin interno ([#585](https://github.com/eclass/ui-kit/issues/585)) ([f0601da](https://github.com/eclass/ui-kit/commit/f0601da77a9d46a974d4adc7e952124ba62a953b))


### Features

* **package:** remove package-lock in machine and regenerate ([#588](https://github.com/eclass/ui-kit/issues/588)) ([ad24982](https://github.com/eclass/ui-kit/commit/ad249825cd796f568cf929df1c1254ba6cb73069))

# [1.30.0](https://github.com/eclass/ui-kit/compare/v1.29.0...v1.30.0) (2023-09-14)


Expand Down
Loading