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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ jobs:
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: git update-index --assume-unchanged .npmrc
- run: npx lerna publish from-package --yes
- run: npx nx release publish
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried this locally with --dry-run and it seemed to work, but we won't know for sure until we try to publish a release.

- if: always()
run: rm .npmrc
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -146,3 +146,6 @@ ajvReplacer.js

# Need this due to shadcn default utils folder is lib
!packages/shadcn/src/lib

.nx/cache
.nx/workspace-data
1 change: 1 addition & 0 deletions CHANGELOG_v6.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ should change the heading of the (upcoming) version to include a major version b
- Updated the `utility-functions.md` documentation to add the `buttonId()` function
- Added the `v6.x upgrade guide.md` documentation
- Updated the `playground` to add a `Layout Grid` example and made the selected example now be part of the shared export
- Replaced Lerna with Nx, updated all lerna commands to use the Nx CLI

# 6.0.0-alpha.0

Expand Down
7 changes: 0 additions & 7 deletions lerna.json

This file was deleted.

81 changes: 50 additions & 31 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,57 @@
{
Copy link
Contributor Author

@nickgros nickgros Apr 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Config file was auto-migrated by the Nx upgrade tool

"extends": "nx/presets/npm.json",
"tasksRunnerOptions": {
"default": {
"runner": "@nrwl/nx-cloud",
"options": {
"cacheableOperations": [
"build",
"cs-check",
"cs-format",
"lint",
"test",
"test:update",
"test:watch",
"precommit",
"publish-to-npm",
"test-coverage",
"build:lib",
"prepublishOnly",
"build:dist",
"publish-to-gh-pages"
]
}
}
},
"targetDefaults": {
"build": {
"dependsOn": [{
"//": "use only dependencies to avoid cycle @rjsf/core:build --> @rjsf/snapshot-tests:build --> @rjsf/core:build",
"projects": "dependencies",
"target": "^build"
}]
"dependsOn": [
{
"//": "use only dependencies to avoid cycle @rjsf/core:build --> @rjsf/snapshot-tests:build --> @rjsf/core:build",
"projects": "dependencies",
"target": "^build"
}
],
"cache": true
},
"cs-check": {
"cache": true
},
"cs-format": {
"cache": true
},
"lint": {
"cache": true
},
"test": {
"cache": true
},
"test:update": {
"cache": true
},
"test:watch": {
"cache": true
},
"precommit": {
"cache": true
},
"publish-to-npm": {
"cache": true
},
"test-coverage": {
"cache": true
},
"build:lib": {
"cache": true
},
"prepublishOnly": {
"cache": true
},
"build:dist": {
"cache": true
},
"publish-to-gh-pages": {
"cache": true
}
},
"affected": {
"defaultBase": "main"
}
"useInferencePlugins": false,
"defaultBase": "main",
"useLegacyCache": true
}
Loading