-
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 and Nx to manage the monorepo
- Loading branch information
Showing
56 changed files
with
25,185 additions
and
36,988 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.