Skip to content

Commit aa1286b

Browse files
committed
chore: save
1 parent 570ac8e commit aa1286b

File tree

14 files changed

+89
-7
lines changed

14 files changed

+89
-7
lines changed

.github/workflows/changeset.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ jobs:
4646
4747
- name: Install and Build
4848
if: steps.changesetfiles.outputs.count == 1
49-
run: yarn --frozen-lockfile
49+
run: |
50+
yarn --frozen-lockfile
51+
yarn build
5052
env:
5153
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5254

.github/workflows/demo.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ jobs:
3535
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3636
run: yarn install --frozen-lockfile
3737

38+
- name: Build
39+
run: yarn build
40+
3841
- name: Build Demo
3942
run: yarn test:demo
4043

.github/workflows/pr-demo.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ jobs:
3232
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3333
run: yarn install --frozen-lockfile
3434

35+
- name: Build
36+
run: yarn build
37+
3538
- name: Build Demo
3639
run: yarn test:demo
3740

.github/workflows/pr-lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ jobs:
3636
env:
3737
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3838

39+
- name: Build
40+
run: yarn build
41+
3942
- name: eslint + stylelint
4043
continue-on-error: true
4144
id: eslint

.github/workflows/pr-test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ jobs:
3232
env:
3333
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3434

35+
- name: Build
36+
run: yarn build
37+
3538
- name: Test
3639
run: yarn test:cov
3740

.github/workflows/pre-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
- name: Install
2929
run: yarn install --frozen-lockfile
3030

31+
- name: Build
32+
run: yarn build
33+
3134
- name: Pre-release talend/ui
3235
id: version
3336
run: |

.github/workflows/visual-testing.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ jobs:
3636
uses: ./.github/actions/setup-node
3737

3838
- name: Install dependencies
39-
run: yarn --frozen-lock
39+
run: |
40+
yarn --frozen-lock
41+
yarn build
4042
4143
- name: Publish PR to DS Chromatic
4244
if: github.ref != 'refs/heads/master'

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,15 @@
1414
"lint-staged": "^15.5.2",
1515
"prettier": "^3.8.1",
1616
"rimraf": "^6.1.3",
17+
"turbo": "^2.9.5",
1718
"typescript": "^5.9.3",
1819
"@vitest/coverage-v8": "^4.1.2",
1920
"vitest": "^4.1.2"
2021
},
2122
"scripts": {
22-
"postinstall": "talend-yarn-workspace run build:lib && talend-yarn-workspace run build:lib:esm",
23+
"build": "yarn build:lib && yarn build:lib:esm",
24+
"build:lib": "turbo run build:lib",
25+
"build:lib:esm": "turbo run build:lib:esm",
2326
"pre-release": "talend-yarn-workspace run pre-release",
2427
"start": "yarn workspace @talend/ui-playground run start",
2528
"start-storybook": "yarn workspace @talend/ui-storybook-one run start",
@@ -43,6 +46,7 @@
4346
"changelog": "git log --pretty=\"format:%C(bold green)%ad%C(reset) %s\" --date=short --color",
4447
"prepare": "husky install"
4548
},
49+
"packageManager": "yarn@1.22.22",
4650
"resolutions": {
4751
"**/ace-builds": "1.10.1",
4852
"**/@types/react": "^18.2.7",

packages/dataviz/src/setupTests.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ i18next.use(initReactI18next).init({
1616
});
1717

1818
// Polyfill ResizeObserver for jsdom
19+
// @ts-ignore
1920
global.ResizeObserver = class ResizeObserver {
2021
observe() {}
2122
unobserve() {}

packages/icons/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@
7171
"react": "^18.3.1",
7272
"storybook": "^10.3.3",
7373
"svgo": "^3.3.3",
74-
"typescript": "^5.9.3",
7574
"vite": "^7.3.1"
7675
},
7776
"publishConfig": {

0 commit comments

Comments
 (0)