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/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:

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

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
cache-dependency-path: 'package-lock.json'
- run: npm i -g npm@9
- run: npm ci
- run: npm run build
- run: npm run build-serial
env:
NODE_OPTIONS: --max_old_space_size=4096
- run: npm test
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packages": ["packages/*"],
"version": "5.24.5",
"version": "5.24.6",
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"useNx": true,
"useWorkspaces": true
Expand Down
136 changes: 68 additions & 68 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions packages/antd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rjsf/antd",
"version": "5.24.5",
"version": "5.24.6",
"description": "Ant Design theme, fields and widgets for react-jsonschema-form",
"main": "dist/index.js",
"module": "lib/index.js",
Expand Down Expand Up @@ -62,10 +62,10 @@
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rjsf/core": "^5.24.5",
"@rjsf/snapshot-tests": "^5.24.5",
"@rjsf/utils": "^5.24.5",
"@rjsf/validator-ajv8": "^5.24.5",
"@rjsf/core": "^5.24.6",
"@rjsf/snapshot-tests": "^5.24.6",
"@rjsf/utils": "^5.24.6",
"@rjsf/validator-ajv8": "^5.24.6",
"@rollup/plugin-replace": "^5.0.5",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
Expand Down
Loading
Loading