Skip to content

Commit 22d1387

Browse files
Release 5.24.6 (#4515)
* - Fix `tsconfig.json` in `core` to build ESM properly * v5.24.6 * - Switch the pipelines to build serially to avoid issues with out-of-sequence builds failing * - Adding `"composite": true,` to the root `tsconfig.build.json` file
1 parent 2f38481 commit 22d1387

File tree

21 files changed

+142
-141
lines changed

21 files changed

+142
-141
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727

2828
- name: Build with Netlify badge
2929
if: github.ref != 'refs/heads/main' && matrix.node-version != '14.x'
30-
run: npm run build
30+
run: npm run build-serial
3131
env:
3232
VITE_SHOW_NETLIFY_BADGE: true
3333
NODE_OPTIONS: --max_old_space_size=4096
3434

3535
- name: Build
3636
if: github.ref == 'refs/heads/main' && matrix.node-version != '14.x'
37-
run: npm run build
37+
run: npm run build-serial
3838
env:
3939
NODE_OPTIONS: --max_old_space_size=4096
4040

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
cache-dependency-path: 'package-lock.json'
1818
- run: npm i -g npm@9
1919
- run: npm ci
20-
- run: npm run build
20+
- run: npm run build-serial
2121
env:
2222
NODE_OPTIONS: --max_old_space_size=4096
2323
- run: npm test

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"packages": ["packages/*"],
3-
"version": "5.24.5",
3+
"version": "5.24.6",
44
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
55
"useNx": true,
66
"useWorkspaces": true

package-lock.json

+68-68
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/antd/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rjsf/antd",
3-
"version": "5.24.5",
3+
"version": "5.24.6",
44
"description": "Ant Design theme, fields and widgets for react-jsonschema-form",
55
"main": "dist/index.js",
66
"module": "lib/index.js",
@@ -62,10 +62,10 @@
6262
"@babel/preset-env": "^7.23.9",
6363
"@babel/preset-react": "^7.23.3",
6464
"@babel/preset-typescript": "^7.23.3",
65-
"@rjsf/core": "^5.24.5",
66-
"@rjsf/snapshot-tests": "^5.24.5",
67-
"@rjsf/utils": "^5.24.5",
68-
"@rjsf/validator-ajv8": "^5.24.5",
65+
"@rjsf/core": "^5.24.6",
66+
"@rjsf/snapshot-tests": "^5.24.6",
67+
"@rjsf/utils": "^5.24.6",
68+
"@rjsf/validator-ajv8": "^5.24.6",
6969
"@rollup/plugin-replace": "^5.0.5",
7070
"@types/jest": "^29.5.12",
7171
"@types/lodash": "^4.14.202",

0 commit comments

Comments
 (0)