Skip to content

Commit

Permalink
feat(repo): updated Nx to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
mandarini committed May 23, 2023
1 parent cd4155b commit fb39009
Show file tree
Hide file tree
Showing 5 changed files with 444 additions and 192 deletions.
24 changes: 20 additions & 4 deletions code/nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"tasksRunnerOptions": {
"default": {
"runner": "@nrwl/nx-cloud",
"runner": "nx-cloud",
"options": {
"cacheableOperations": ["prep"],
"accessToken": "NGVmYTkxMmItYzY3OS00MjkxLTk1ZDktZDFmYTFmNmVlNGY4fHJlYWQ=",
Expand All @@ -29,13 +29,29 @@
},
"targetDefaults": {
"build": {
"dependsOn": [{ "projects": "dependencies", "target": "build" }]
"dependsOn": [
{
"target": "build",
"dependencies": true
}
]
},
"package": {
"dependsOn": [{ "projects": "dependencies", "target": "package" }]
"dependsOn": [
{
"target": "package",
"dependencies": true
}
]
},
"prep": {
"dependsOn": [{ "projects": "dependencies", "target": "prep", "params": "forward" }],
"dependsOn": [
{
"target": "prep",
"params": "forward",
"dependencies": true
}
],
"outputs": ["{projectRoot}/dist"]
}
}
Expand Down
9 changes: 4 additions & 5 deletions code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,7 @@
"@emotion/jest": "^11.10.0",
"@jest/globals": "^29.3.1",
"@linear/sdk": "^1.21.0",
"@nrwl/cli": "^15.4.5",
"@nrwl/nx-cloud": "^15.0.2",
"@nrwl/workspace": "^15.4.5",
"@nx/workspace": "16.2.1",
"@playwright/test": "1.32.3",
"@storybook/addon-a11y": "workspace:*",
"@storybook/addon-actions": "workspace:*",
Expand Down Expand Up @@ -244,7 +242,8 @@
"lint-staged": "^10.5.4",
"lodash": "^4.17.21",
"node-gyp": "^8.4.0",
"nx": "^15.4.5",
"nx": "16.2.1",
"nx-cloud": "16.0.5",
"playwright": "1.32.3",
"prettier": "2.8.0",
"process": "^0.11.10",
Expand All @@ -255,7 +254,7 @@
"trash": "^7.0.0",
"ts-dedent": "^2.0.0",
"ts-node": "^10.9.1",
"typescript": "~4.9.3",
"typescript": "5.0.4",
"util": "^0.12.4",
"vite": "^4.0.0",
"vite-plugin-turbosnap": "^1.0.1",
Expand Down
Loading

0 comments on commit fb39009

Please sign in to comment.