Skip to content

Commit

Permalink
Dependencies: Update nx dependencies to v17
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinpalkovic committed Nov 2, 2023
1 parent e1cb740 commit 369f0f7
Show file tree
Hide file tree
Showing 9 changed files with 312 additions and 410 deletions.
1 change: 1 addition & 0 deletions code/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.nx/cache
2 changes: 2 additions & 0 deletions code/.prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
*.mdx

/.nx/cache
43 changes: 43 additions & 0 deletions code/migrations.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"migrations": [
{
"cli": "nx",
"version": "16.6.0-beta.6",
"description": "Prefix outputs with {workspaceRoot}/{projectRoot} if needed",
"implementation": "./src/migrations/update-15-0-0/prefix-outputs",
"package": "nx",
"name": "16.6.0-prefix-outputs"
},
{
"cli": "nx",
"version": "16.8.0-beta.3",
"description": "Escape $ in env variables",
"implementation": "./src/migrations/update-16-8-0/escape-dollar-sign-env-variables",
"package": "nx",
"name": "16.8.0-escape-dollar-sign-env"
},
{
"cli": "nx",
"version": "17.0.0-beta.1",
"description": "Updates the default cache directory to .nx/cache",
"implementation": "./src/migrations/update-17-0-0/move-cache-directory",
"package": "nx",
"name": "17.0.0-move-cache-directory"
},
{
"cli": "nx",
"version": "17.0.0-beta.3",
"description": "Use minimal config for tasksRunnerOptions",
"implementation": "./src/migrations/update-17-0-0/use-minimal-config-for-tasks-runner-options",
"package": "nx",
"name": "17.0.0-use-minimal-config-for-tasks-runner-options"
},
{
"version": "17.0.0-rc.1",
"description": "Migration for v17.0.0-rc.1",
"implementation": "./src/migrations/update-17-0-0/rm-default-collection-npm-scope",
"package": "nx",
"name": "rm-default-collection-npm-scope"
}
]
}
14 changes: 6 additions & 8 deletions code/nx.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"npmScope": "storybook",
"implicitDependencies": {
"package.json": {
"dependencies": "*",
Expand All @@ -14,13 +13,9 @@
},
"tasksRunnerOptions": {
"default": {
"runner": "nx-cloud",
"options": {
"cacheableOperations": ["prep"],
"accessToken": "NGVmYTkxMmItYzY3OS00MjkxLTk1ZDktZDFmYTFmNmVlNGY4fHJlYWQ=",
"canTrackAnalytics": false,
"showUsageWarnings": true,
"parallel": 1
"showUsageWarnings": true
}
}
},
Expand Down Expand Up @@ -52,7 +47,10 @@
"dependencies": true
}
],
"outputs": ["{projectRoot}/dist"]
"outputs": ["{projectRoot}/dist"],
"cache": true
}
}
},
"nxCloudAccessToken": "NGVmYTkxMmItYzY3OS00MjkxLTk1ZDktZDFmYTFmNmVlNGY4fHJlYWQ=",
"parallel": 1
}
5 changes: 2 additions & 3 deletions code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"@babel/runtime": "^7.23.2",
"@emotion/jest": "^11.10.0",
"@jest/globals": "^29.3.1",
"@nx/workspace": "16.2.1",
"@nx/workspace": "17.0.2",
"@playwright/test": "1.36.0",
"@storybook/addon-a11y": "workspace:*",
"@storybook/addon-actions": "workspace:*",
Expand Down Expand Up @@ -246,8 +246,7 @@
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"node-gyp": "^9.3.1",
"nx": "16.2.1",
"nx-cloud": "16.0.5",
"nx": "17.0.2",
"prettier": "2.8.0",
"process": "^0.11.10",
"raf": "^3.4.1",
Expand Down
Loading

0 comments on commit 369f0f7

Please sign in to comment.