-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Use pnpm for package management - Improves developer experience by allowing us to reference workspace package dependencies that are replaced at publish-time, removing the need to release new versions just for the sake of upgrading peer dependencies () - Improves developer experience by being faster than npm - Fully use Nx for monorepo management (drop Lerna aliases, which just used Nx under the hood)
- Loading branch information
Showing
55 changed files
with
24,196 additions
and
37,048 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -140,3 +140,6 @@ out/ | |
|
||
# typescript tsbuildinfo | ||
*.tsbuildinfo | ||
|
||
.nx/cache | ||
.nx/workspace-data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,56 @@ | ||
{ | ||
"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", | ||
"target": "^build", | ||
"dependencies": true | ||
} | ||
], | ||
"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" | ||
} |
Oops, something went wrong.