Skip to content

Commit b08061e

Browse files
authored
Merge branch 'main' into refetch
2 parents 43221a7 + a02b06b commit b08061e

File tree

13 files changed

+147
-153
lines changed

13 files changed

+147
-153
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fetch-depth: 0
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: 18
19+
node-version: 22
2020
cache: npm
2121
- run: npm ci
2222
- run: npm run lint

.github/workflows/pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Node
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: 18
21+
node-version: 22
2222
cache: npm
2323
- name: Install Packages
2424
run: npm ci

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
with:
1414
github-token: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
1515
npm-token: ${{ secrets.NODE_AUTH_TOKEN }}
16-
node-version: 18
16+
node-version: 22

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.19.0
1+
v22

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [5.1.0](https://github.com/ydb-platform/ydb-ui-components/compare/v5.0.0...v5.1.0) (2025-09-16)
4+
5+
6+
### Features
7+
8+
* **NavigationTree:** add system table node type ([#95](https://github.com/ydb-platform/ydb-ui-components/issues/95)) ([2b4da15](https://github.com/ydb-platform/ydb-ui-components/commit/2b4da15414208b89d3488d707d14fe51c2dd06f7))
9+
* replace transfer icon ([#94](https://github.com/ydb-platform/ydb-ui-components/issues/94)) ([f6c3b55](https://github.com/ydb-platform/ydb-ui-components/commit/f6c3b55d94cfabf9529ad6b1dd7b250923160252))
10+
11+
## [5.0.0](https://github.com/ydb-platform/ydb-ui-components/compare/v4.7.0...v5.0.0) (2025-05-23)
12+
13+
14+
### ⚠ BREAKING CHANGES
15+
16+
* support uikit@7 ([#92](https://github.com/ydb-platform/ydb-ui-components/issues/92))
17+
18+
### Features
19+
20+
* support uikit@7 ([#92](https://github.com/ydb-platform/ydb-ui-components/issues/92)) ([53e3930](https://github.com/ydb-platform/ydb-ui-components/commit/53e3930555bd092642261131c1bb075eb99fab2d))
21+
322
## [4.7.0](https://github.com/ydb-platform/ydb-ui-components/compare/v4.6.0...v4.7.0) (2025-05-20)
423

524

gulpfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ task('clean', (done) => {
1717
function compileTs(modules = false) {
1818
const tsProject = ts.createProject('tsconfig.json', {
1919
declaration: true,
20+
module: modules ? 'esnext' : 'nodenext',
21+
moduleResolution: modules ? 'bundler' : 'nodenext',
2022
...(modules ? undefined : {verbatimModuleSyntax: false}),
21-
module: modules ? 'esnext' : 'commonjs',
2223
});
2324
return src(['src/**/*.{ts,tsx}', '!src/**/__stories__/**/*.{ts,tsx}'])
2425
.pipe(replace(/import '.+\.scss';/g, (match) => match.replace('.scss', '.css')))

0 commit comments

Comments
 (0)