yarn lerna repair

This commit is contained in:
Adria Navarro 2024-07-01 17:55:16 +02:00
parent cc8c9e62c4
commit dd70f0b72b
2 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,5 @@
{ {
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "2.29.5", "version": "2.29.5",
"npmClient": "yarn", "npmClient": "yarn",
"packages": [ "packages": [
@ -6,7 +7,6 @@
"!packages/account-portal", "!packages/account-portal",
"packages/account-portal/packages/*" "packages/account-portal/packages/*"
], ],
"useNx": true,
"concurrency": 20, "concurrency": 20,
"command": { "command": {
"publish": { "publish": {
@ -22,4 +22,4 @@
"loadEnvFiles": false "loadEnvFiles": false
} }
} }
} }

View File

@ -1,4 +1,5 @@
{ {
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"tasksRunnerOptions": { "tasksRunnerOptions": {
"default": { "default": {
"runner": "nx-cloud", "runner": "nx-cloud",
@ -11,5 +12,10 @@
"build": { "build": {
"inputs": ["{workspaceRoot}/scripts/*", "{workspaceRoot}/lerna.json"] "inputs": ["{workspaceRoot}/scripts/*", "{workspaceRoot}/lerna.json"]
} }
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": [],
"production": ["default"]
} }
} }