Skip to content

Commit

Permalink
Remove deprecated run command
Browse files Browse the repository at this point in the history
  • Loading branch information
pavinduLakshan committed Apr 14, 2024
1 parent 8bb5488 commit a3691be
Show file tree
Hide file tree
Showing 14 changed files with 43 additions and 43 deletions.
16 changes: 8 additions & 8 deletions apps/console/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"targets": {
"build-prepare": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
{
Expand Down Expand Up @@ -105,7 +105,7 @@
}
},
"build-windup": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
{
Expand All @@ -118,7 +118,7 @@
}
},
"build": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
"pnpm nx run console:build-prepare",
Expand All @@ -130,7 +130,7 @@
}
},
"clean": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
{
Expand All @@ -143,7 +143,7 @@
}
},
"serve-prepare": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
{
Expand Down Expand Up @@ -177,7 +177,7 @@
}
},
"serve": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
"pnpm nx run console:serve-prepare",
Expand All @@ -188,15 +188,15 @@
}
},
"lint": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm lint",
"cwd": "apps/console",
"parallel": false
}
},
"test": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm test",
"cwd": "apps/console",
Expand Down
14 changes: 7 additions & 7 deletions apps/myaccount/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
],
"targets": {
"build-prepare": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
{
Expand Down Expand Up @@ -100,7 +100,7 @@
}
},
"build": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
"pnpm nx run myaccount:build-prepare",
Expand All @@ -112,7 +112,7 @@
},

"clean": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
{
Expand All @@ -125,7 +125,7 @@
}
},
"serve-prepare": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
{
Expand Down Expand Up @@ -159,7 +159,7 @@
}
},
"serve": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
"pnpm nx run myaccount:serve-prepare",
Expand All @@ -170,15 +170,15 @@
}
},
"lint": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm lint",
"cwd": "apps/myaccount",
"parallel": false
}
},
"test": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm test",
"cwd": "apps/myaccount",
Expand Down
4 changes: 2 additions & 2 deletions features/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"targets": {
"build": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
{
Expand All @@ -26,7 +26,7 @@
}
},
"test": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm test",
"cwd": "features",
Expand Down
4 changes: 2 additions & 2 deletions identity-apps-core/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"targets": {
"build": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
{
Expand All @@ -24,7 +24,7 @@
}
},
"clean": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"commands": [
{
Expand Down
6 changes: 3 additions & 3 deletions modules/access-control/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"targets": {
"build": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"outputs": [
"{options.outputPath}"
],
Expand All @@ -23,15 +23,15 @@
}
},
"lint": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm lint",
"cwd": "modules/access-control",
"parallel": false
}
},
"test": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm test",
"cwd": "modules/access-control",
Expand Down
6 changes: 3 additions & 3 deletions modules/core/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"tags": [],
"targets": {
"build": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"outputs": [
"{options.outputPath}"
],
Expand All @@ -20,15 +20,15 @@
}
},
"lint": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm lint",
"cwd": "modules/core",
"parallel": false
}
},
"test": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm test",
"cwd": "modules/core",
Expand Down
4 changes: 2 additions & 2 deletions modules/dynamic-forms/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
}
},
"lint": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm lint",
"cwd": "modules/dynamic-forms",
"parallel": false
}
},
"test": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm test",
"cwd": "modules/dynamic-forms",
Expand Down
4 changes: 2 additions & 2 deletions modules/form/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
}
},
"lint": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm lint",
"cwd": "modules/form",
"parallel": false
}
},
"test": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm test",
"cwd": "modules/form",
Expand Down
4 changes: 2 additions & 2 deletions modules/forms/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@
}
},
"lint": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm lint",
"cwd": "modules/forms",
"parallel": false
}
},
"test": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm test",
"cwd": "modules/forms",
Expand Down
6 changes: 3 additions & 3 deletions modules/i18n/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"targets": {
"build": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"outputs": [
"{options.outputPath}"
],
Expand All @@ -23,15 +23,15 @@
}
},
"lint": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm lint",
"cwd": "modules/i18n",
"parallel": false
}
},
"test": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm test",
"cwd": "modules/i18n",
Expand Down
4 changes: 2 additions & 2 deletions modules/react-components/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
}
},
"lint": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm lint",
"cwd": "modules/react-components",
"parallel": false
}
},
"test": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm test",
"cwd": "modules/react-components",
Expand Down
6 changes: 3 additions & 3 deletions modules/theme/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"tags": [],
"targets": {
"build": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"outputs": [
"{options.outputPath}"
],
Expand All @@ -20,15 +20,15 @@
}
},
"lint": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm lint",
"cwd": "modules/theme",
"parallel": false
}
},
"test": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm test",
"cwd": "modules/theme",
Expand Down
6 changes: 3 additions & 3 deletions modules/validation/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"tags": [],
"targets": {
"build": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"outputs": [
"{options.outputPath}"
],
Expand All @@ -20,15 +20,15 @@
}
},
"lint": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm lint",
"cwd": "modules/validation",
"parallel": false
}
},
"test": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "pnpm test",
"cwd": "modules/validation",
Expand Down
2 changes: 1 addition & 1 deletion tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"tags": [],
"targets": {
"build": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"outputs": [
"tests/dist"
],
Expand Down

0 comments on commit a3691be

Please sign in to comment.