update nx to latest version

This commit is contained in:
Katerina Skroumpelou 2022-08-30 11:32:16 +03:00
parent 0e086d22c6
commit 357af90657
8 changed files with 2742 additions and 1146 deletions

View File

@ -84,7 +84,7 @@
"@angular/forms": "^13.3.6",
"@angular/platform-browser": "^13.3.6",
"@angular/platform-browser-dynamic": "^13.3.6",
"@nrwl/workspace": "^14.1.4",
"@nrwl/workspace": "14.6.1",
"@types/autoprefixer": "^9.7.2",
"@types/tmp": "^0.2.3",
"cross-spawn": "^7.0.3",
@ -108,7 +108,7 @@
"@angular/platform-browser": ">=6.0.0",
"@angular/platform-browser-dynamic": ">=6.0.0",
"@babel/core": "*",
"@nrwl/workspace": ">=11.1.0",
"@nrwl/workspace": "14.6.1",
"rxjs": "^6.0.0 || ^7.4.0",
"typescript": "^4.0.0",
"zone.js": "^0.8.29 || ^0.9.0 || ^0.10.0 || ^0.11.0"

100
code/migrations.json Normal file
View File

@ -0,0 +1,100 @@
{
"migrations": [
{
"version": "12.5.0-beta.1",
"description": "Rename the workspace-schematic script into workspace-generator script",
"factory": "./src/migrations/update-12-5-0/add-target-dependencies",
"cli": "nx",
"package": "@nrwl/workspace",
"name": "add-target-dependencies"
},
{
"version": "13.0.0-beta.1",
"description": "Add default base to nx.json if its not currently set",
"factory": "./src/migrations/update-13-0-0/set-default-base-if-not-set",
"cli": "nx",
"package": "@nrwl/workspace",
"name": "set-default-base-if-not-set"
},
{
"version": "13.0.0-beta.4",
"description": "Move global settings into nx.json, and project specific settings into workspace.json",
"cli": "nx",
"implementation": "./src/migrations/update-13-0-0/config-locations/config-locations",
"package": "@nrwl/workspace",
"name": "13-0-0-config-locations"
},
{
"version": "13.2.0",
"description": "Set --parallel=1 for existing repos to preserve the existing behavior",
"cli": "nx",
"implementation": "./src/migrations/update-13-2-0/set-parallel-default",
"package": "@nrwl/workspace",
"name": "set-parallel-default"
},
{
"version": "13.3.0-beta.0",
"description": "@nrwl/workspace:tsc is now @nrwl/js:tsc",
"cli": "nx",
"implementation": "./src/migrations/update-13-3-0/update-tsc-executor-location",
"package": "@nrwl/workspace",
"name": "13-3-0-tsc-location"
},
{
"version": "13.6.0-beta.0",
"description": "Remove old options that are no longer used",
"cli": "nx",
"implementation": "./src/migrations/update-13-6-0/remove-old-task-runner-options",
"package": "@nrwl/workspace",
"name": "13-6-0-remove-old-task-runner-options"
},
{
"version": "13.9.0-beta.0",
"description": "Replace @nrwl/tao with nx",
"cli": "nx",
"implementation": "./src/migrations/update-13-9-0/replace-tao-with-nx",
"package": "@nrwl/workspace",
"name": "13-9-0-replace-tao-with-nx"
},
{
"version": "13.10.0-beta.0",
"description": "Update the decorate-angular-cli script to require nx instead of @nrwl/cli",
"cli": "nx",
"implementation": "./src/migrations/update-13-10-0/update-decorate-cli",
"package": "@nrwl/workspace",
"name": "13-10-0-update-decorate-cli"
},
{
"version": "13.10.0-beta.0",
"description": "Update the tasks runner property to import it from the nx package instead of @nrwl/worksapce",
"cli": "nx",
"implementation": "./src/migrations/update-13-10-0/update-tasks-runner",
"package": "@nrwl/workspace",
"name": "13-10-0-update-tasks-runner"
},
{
"version": "14.0.0-beta.0",
"description": "Changes the presets in nx.json to come from the nx package",
"cli": "nx",
"implementation": "./src/migrations/update-14-0-0/change-nx-json-presets",
"package": "@nrwl/workspace",
"name": "14-0-0-change-nx-json-presets"
},
{
"version": "14.0.0-beta.0",
"description": "Migrates from @nrwl/workspace:run-script to nx:run-script",
"cli": "nx",
"implementation": "./src/migrations/update-14-0-0/change-npm-script-executor",
"package": "@nrwl/workspace",
"name": "14-0-0-change-npm-script-executor"
},
{
"version": "14.2.0",
"description": "Explicitly enable sourceAnalysis for all workspaces extending from npm.json or core.json (this was default behavior prior to 14.2)",
"cli": "nx",
"implementation": "./src/migrations/update-14-2-0/enable-source-analysis",
"package": "@nrwl/workspace",
"name": "14-2-0-enable-source-analysis"
}
]
}

View File

@ -11,121 +11,34 @@
"runner": "@nrwl/nx-cloud",
"options": {
"cacheableOperations": ["build", "test", "lint", "package", "prepare"],
"strictlyOrderedTargets": ["build", "package", "prepare"],
"accessToken": "NGVmYTkxMmItYzY3OS00MjkxLTk1ZDktZDFmYTFmNmVlNGY4fHJlYWQ=",
"canTrackAnalytics": false,
"showUsageWarnings": true
"showUsageWarnings": true,
"parallel": 1
}
}
},
"projects": {
"@storybook/addon-a11y": { "implicitDependencies": [] },
"@storybook/addon-actions": { "implicitDependencies": [] },
"@storybook/addon-backgrounds": { "implicitDependencies": [] },
"@storybook/addon-controls": { "implicitDependencies": [] },
"@storybook/addon-docs": { "implicitDependencies": [] },
"@storybook/addon-essentials": { "implicitDependencies": [] },
"@storybook/addon-highlight": { "implicitDependencies": [] },
"@storybook/addon-interactions": { "implicitDependencies": [] },
"@storybook/addon-jest": { "implicitDependencies": [] },
"@storybook/addon-links": { "implicitDependencies": [] },
"@storybook/addon-measure": { "implicitDependencies": [] },
"@storybook/addon-outline": { "implicitDependencies": [] },
"@storybook/addon-storyshots": { "implicitDependencies": [] },
"@storybook/addon-storyshots-puppeteer": { "implicitDependencies": [] },
"@storybook/addon-storysource": { "implicitDependencies": [] },
"@storybook/addon-toolbars": { "implicitDependencies": [] },
"@storybook/addon-viewport": { "implicitDependencies": [] },
"angular-cli": { "implicitDependencies": [] },
"cra-kitchen-sink": { "implicitDependencies": [] },
"cra-ts-essentials": { "implicitDependencies": [] },
"cra-ts-kitchen-sink": { "implicitDependencies": [] },
"ember-example": { "implicitDependencies": [] },
"html-kitchen-sink": { "implicitDependencies": [] },
"official-storybook": { "implicitDependencies": [] },
"preact-example": { "implicitDependencies": [] },
"@storybook/example-react-ts": { "implicitDependencies": [] },
"server-kitchen-sink": { "implicitDependencies": [] },
"standalone-preview": { "implicitDependencies": [] },
"svelte-example": { "implicitDependencies": [] },
"vue-3-cli-example": { "implicitDependencies": [] },
"vue-cli-example": { "implicitDependencies": [] },
"vue-example": { "implicitDependencies": [] },
"web-components-kitchen-sink": { "implicitDependencies": [] },
"@storybook/external-docs": { "implicitDependencies": [] },
"@storybook/example-doc-blocks": { "implicitDependencies": [] },
"@storybook/angular": { "implicitDependencies": [] },
"@storybook/docs-tools": { "implicitDependencies": [] },
"@storybook/ember": { "implicitDependencies": [] },
"@storybook/html": { "implicitDependencies": [] },
"@storybook/preact": { "implicitDependencies": [] },
"@storybook/react": { "implicitDependencies": [] },
"@storybook/server": { "implicitDependencies": [] },
"@storybook/svelte": { "implicitDependencies": [] },
"@storybook/vue": { "implicitDependencies": [] },
"@storybook/vue3": { "implicitDependencies": [] },
"@storybook/web-components": { "implicitDependencies": [] },
"@storybook/preset-html-webpack": { "implicitDependencies": [] },
"@storybook/preset-preact-webpack": { "implicitDependencies": [] },
"@storybook/preset-react-webpack": { "implicitDependencies": [] },
"@storybook/preset-server-webpack": { "implicitDependencies": [] },
"@storybook/preset-svelte-webpack": { "implicitDependencies": [] },
"@storybook/preset-vue-webpack": { "implicitDependencies": [] },
"@storybook/preset-vue3-webpack": { "implicitDependencies": [] },
"@storybook/preset-web-components-webpack": { "implicitDependencies": [] },
"@storybook/core-webpack": { "implicitDependencies": [] },
"@storybook/core-vite": { "implicitDependencies": [] },
"@storybook/core-client": { "implicitDependencies": [] },
"@storybook/core-common": { "implicitDependencies": [] },
"@storybook/core-events": { "implicitDependencies": [] },
"@storybook/core-server": { "implicitDependencies": [] },
"@storybook/csf-tools": { "implicitDependencies": [] },
"@storybook/builder-manager": { "implicitDependencies": [] },
"@storybook/addons": { "implicitDependencies": [] },
"@storybook/api": { "implicitDependencies": [] },
"@storybook/builder-vite": { "implicitDependencies": [] },
"@storybook/builder-webpack5": { "implicitDependencies": [] },
"@storybook/channel-postmessage": { "implicitDependencies": [] },
"@storybook/channel-websocket": { "implicitDependencies": [] },
"@storybook/channels": { "implicitDependencies": [] },
"@storybook/cli": { "implicitDependencies": [] },
"sb": { "implicitDependencies": [] },
"storybook": { "implicitDependencies": [] },
"@storybook/client-api": { "implicitDependencies": [] },
"@storybook/client-logger": { "implicitDependencies": [] },
"@storybook/codemod": { "implicitDependencies": [] },
"@storybook/components": { "implicitDependencies": [] },
"@storybook/instrumenter": { "implicitDependencies": [] },
"@storybook/node-logger": { "implicitDependencies": [] },
"@storybook/postinstall": { "implicitDependencies": [] },
"@storybook/store": { "implicitDependencies": [] },
"@storybook/router": { "implicitDependencies": [] },
"@storybook/source-loader": { "implicitDependencies": [] },
"@storybook/telemetry": { "implicitDependencies": [] },
"@storybook/theming": { "implicitDependencies": [] },
"@storybook/ui": { "implicitDependencies": [] },
"@storybook/preview-web": { "implicitDependencies": [] },
"@storybook/blocks": { "implicitDependencies": [] },
"@storybook/html-webpack5": { "implicitDependencies": [] },
"@storybook/preact-webpack5": { "implicitDependencies": [] },
"@storybook/react-webpack5": { "implicitDependencies": [] },
"@storybook/server-webpack5": { "implicitDependencies": [] },
"@storybook/svelte-webpack5": { "implicitDependencies": [] },
"@storybook/vue-webpack5": { "implicitDependencies": [] },
"@storybook/vue3-webpack5": { "implicitDependencies": [] },
"@storybook/web-components-webpack5": { "implicitDependencies": [] },
"@storybook/react-vite": { "implicitDependencies": [] },
"@storybook/vue3-vite": { "implicitDependencies": [] },
"@storybook/svelte-vite": { "implicitDependencies": [] }
},
"affected": {
"defaultBase": "next"
},
"targetDependencies": {
"build": [
{
"target": "build",
"projects": "dependencies"
}
],
"package": [
{
"target": "package",
"projects": "dependencies"
}
],
"prepare": [
{
"target": "prepare",
"projects": "dependencies"
}
]
}
}

View File

@ -116,7 +116,7 @@
"defaults"
],
"resolutions": {
"@nrwl/cli": "12.3.4",
"@nrwl/cli": "14.6.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/experimental-utils": "5.3.0",
"@typescript-eslint/parser": "^5.15.0",
@ -150,10 +150,9 @@
"@emotion/jest": "^11.8.0",
"@linear/sdk": "^1.21.0",
"@nicolo-ribaudo/chokidar-2": "^2.1.8",
"@nrwl/cli": "12.3.4",
"@nrwl/nx-cloud": "12.1.1",
"@nrwl/tao": "12.3.4",
"@nrwl/workspace": "12.3.4",
"@nrwl/cli": "14.6.1",
"@nrwl/nx-cloud": "14.6.0",
"@nrwl/workspace": "14.6.1",
"@playwright/test": "^1.24.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.1",
@ -324,10 +323,11 @@
"node-fetch": "^2.6.1",
"node-gyp": "^8.4.0",
"npmlog": "^5.0.1",
"nx": "14.6.1",
"p-limit": "^3.1.0",
"playwright": "^1.24.2",
"postcss-loader": "^6.2.1",
"prettier": ">=2.2.1 <=2.3.0",
"prettier": "2.7.1",
"process": "^0.11.10",
"prompts": "^2.4.0",
"raf": "^3.4.1",
@ -351,7 +351,7 @@
"ts-jest": "^26.4.4",
"ts-node": "^10.4.0",
"tsup": "^6.2.2",
"typescript": "~4.6.3",
"typescript": "4.7.4",
"util": "^0.12.4",
"wait-on": "^5.2.1",
"web-component-analyzer": "^1.1.6",

View File

@ -1,125 +1,495 @@
{
"version": 2,
"projects": {
"@storybook/addon-a11y": { "root": "addons/a11y", "type": "library" },
"@storybook/addon-actions": { "root": "addons/actions", "type": "library" },
"@storybook/addon-backgrounds": { "root": "addons/backgrounds", "type": "library" },
"@storybook/addon-controls": { "root": "addons/controls", "type": "library" },
"@storybook/addon-docs": { "root": "addons/docs", "type": "library" },
"@storybook/addon-essentials": { "root": "addons/essentials", "type": "library" },
"@storybook/addon-highlight": { "root": "addons/highlight", "type": "library" },
"@storybook/addon-interactions": { "root": "addons/interactions", "type": "library" },
"@storybook/addon-jest": { "root": "addons/jest", "type": "library" },
"@storybook/addon-links": { "root": "addons/links", "type": "library" },
"@storybook/addon-measure": { "root": "addons/measure", "type": "library" },
"@storybook/addon-outline": { "root": "addons/outline", "type": "library" },
"@storybook/addon-a11y": {
"root": "addons/a11y",
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-actions": {
"root": "addons/actions",
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-backgrounds": {
"root": "addons/backgrounds",
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-controls": {
"root": "addons/controls",
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-docs": {
"root": "addons/docs",
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-essentials": {
"root": "addons/essentials",
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-highlight": {
"root": "addons/highlight",
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-interactions": {
"root": "addons/interactions",
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-jest": {
"root": "addons/jest",
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-links": {
"root": "addons/links",
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-measure": {
"root": "addons/measure",
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-outline": {
"root": "addons/outline",
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-storyshots": {
"root": "addons/storyshots/storyshots-core",
"type": "library"
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-storyshots-puppeteer": {
"root": "addons/storyshots/storyshots-puppeteer",
"type": "library"
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-storysource": { "root": "addons/storysource", "type": "library" },
"@storybook/addon-toolbars": { "root": "addons/toolbars", "type": "library" },
"@storybook/addon-viewport": { "root": "addons/viewport", "type": "library" },
"@storybook/angular": { "root": "frameworks/angular", "type": "library" },
"@storybook/docs-tools": { "root": "lib/docs-tools", "type": "library" },
"@storybook/ember": { "root": "frameworks/ember", "type": "library" },
"@storybook/html-webpack5": { "root": "frameworks/html-webpack5", "type": "library" },
"@storybook/builder-manager": { "root": "lib/builder-manager", "type": "library" },
"@storybook/preact-webpack5": { "root": "frameworks/preact-webpack5", "type": "library" },
"@storybook/react-webpack5": { "root": "frameworks/react-webpack5", "type": "library" },
"@storybook/server-webpack5": { "root": "frameworks/server-webpack5", "type": "library" },
"@storybook/svelte-webpack5": { "root": "frameworks/svelte-webpack5", "type": "library" },
"@storybook/vue-webpack5": { "root": "frameworks/vue-webpack5", "type": "library" },
"@storybook/vue3-webpack5": { "root": "frameworks/vue3-webpack5", "type": "library" },
"@storybook/web-components-webpack5": {
"root": "frameworks/web-components-webpack5",
"type": "library"
"@storybook/addon-storysource": {
"root": "addons/storysource",
"type": "library",
"implicitDependencies": []
},
"@storybook/react-vite": { "root": "frameworks/react-vite", "type": "library" },
"@storybook/vue3-vite": { "root": "frameworks/vue3-vite", "type": "library" },
"@storybook/svelte-vite": { "root": "frameworks/svelte-vite", "type": "library" },
"@storybook/core-webpack": { "root": "lib/core-webpack", "type": "library" },
"@storybook/core-vite": { "root": "lib/core-vite", "type": "library" },
"angular-cli": { "root": "examples/angular-cli", "type": "library" },
"cra-kitchen-sink": { "root": "examples/cra-kitchen-sink", "type": "library" },
"cra-ts-essentials": { "root": "examples/cra-ts-essentials", "type": "library" },
"cra-ts-kitchen-sink": { "root": "examples/cra-ts-kitchen-sink", "type": "library" },
"ember-example": { "root": "examples/ember-cli", "type": "library" },
"html-kitchen-sink": { "root": "examples/html-kitchen-sink", "type": "library" },
"official-storybook": { "root": "examples/official-storybook", "type": "library" },
"preact-example": { "root": "examples/preact-kitchen-sink", "type": "library" },
"@storybook/example-react-ts": { "root": "examples/react-ts", "type": "library" },
"server-kitchen-sink": { "root": "examples/server-kitchen-sink", "type": "library" },
"standalone-preview": { "root": "examples/standalone-preview", "type": "library" },
"svelte-example": { "root": "examples/svelte-kitchen-sink", "type": "library" },
"vue-3-cli-example": { "root": "examples/vue-3-cli", "type": "library" },
"vue-cli-example": { "root": "examples/vue-cli", "type": "library" },
"vue-example": { "root": "examples/vue-kitchen-sink", "type": "library" },
"web-components-kitchen-sink": {
"root": "examples/web-components-kitchen-sink",
"type": "library"
"@storybook/addon-toolbars": {
"root": "addons/toolbars",
"type": "library",
"implicitDependencies": []
},
"@storybook/addon-viewport": {
"root": "addons/viewport",
"type": "library",
"implicitDependencies": []
},
"@storybook/addons": {
"root": "lib/addons",
"type": "library",
"implicitDependencies": []
},
"@storybook/angular": {
"root": "frameworks/angular",
"type": "library",
"implicitDependencies": []
},
"@storybook/api": {
"root": "lib/api",
"type": "library",
"implicitDependencies": []
},
"@storybook/blocks": {
"root": "lib/blocks",
"type": "library",
"implicitDependencies": []
},
"@storybook/builder-manager": {
"root": "lib/builder-manager",
"type": "library",
"implicitDependencies": []
},
"@storybook/builder-vite": {
"root": "lib/builder-vite",
"type": "library",
"implicitDependencies": []
},
"@storybook/builder-webpack5": {
"root": "lib/builder-webpack5",
"type": "library",
"implicitDependencies": []
},
"@storybook/channel-postmessage": {
"root": "lib/channel-postmessage",
"type": "library",
"implicitDependencies": []
},
"@storybook/channel-websocket": {
"root": "lib/channel-websocket",
"type": "library",
"implicitDependencies": []
},
"@storybook/channels": {
"root": "lib/channels",
"type": "library",
"implicitDependencies": []
},
"@storybook/cli": {
"root": "lib/cli",
"type": "library",
"implicitDependencies": []
},
"@storybook/client-api": {
"root": "lib/client-api",
"type": "library",
"implicitDependencies": []
},
"@storybook/client-logger": {
"root": "lib/client-logger",
"type": "library",
"implicitDependencies": []
},
"@storybook/codemod": {
"root": "lib/codemod",
"type": "library",
"implicitDependencies": []
},
"@storybook/components": {
"root": "lib/components",
"type": "library",
"implicitDependencies": []
},
"@storybook/core-client": {
"root": "lib/core-client",
"type": "library",
"implicitDependencies": []
},
"@storybook/core-common": {
"root": "lib/core-common",
"type": "library",
"implicitDependencies": []
},
"@storybook/core-events": {
"root": "lib/core-events",
"type": "library",
"implicitDependencies": []
},
"@storybook/core-server": {
"root": "lib/core-server",
"type": "library",
"implicitDependencies": []
},
"@storybook/core-vite": {
"root": "lib/core-vite",
"type": "library",
"implicitDependencies": []
},
"@storybook/core-webpack": {
"root": "lib/core-webpack",
"type": "library",
"implicitDependencies": []
},
"@storybook/csf-tools": {
"root": "lib/csf-tools",
"type": "library",
"implicitDependencies": []
},
"@storybook/docs-tools": {
"root": "lib/docs-tools",
"type": "library",
"implicitDependencies": []
},
"@storybook/ember": {
"root": "frameworks/ember",
"type": "library",
"implicitDependencies": []
},
"@storybook/example-doc-blocks": {
"root": "examples/doc-blocks",
"type": "library",
"implicitDependencies": []
},
"@storybook/example-react-ts": {
"root": "examples/react-ts",
"type": "library",
"implicitDependencies": []
},
"@storybook/external-docs": {
"root": "examples/external-docs",
"type": "library",
"implicitDependencies": []
},
"@storybook/html": {
"root": "renderers/html",
"type": "library",
"implicitDependencies": []
},
"@storybook/html-webpack5": {
"root": "frameworks/html-webpack5",
"type": "library",
"implicitDependencies": []
},
"@storybook/instrumenter": {
"root": "lib/instrumenter",
"type": "library",
"implicitDependencies": []
},
"@storybook/node-logger": {
"root": "lib/node-logger",
"type": "library",
"implicitDependencies": []
},
"@storybook/postinstall": {
"root": "lib/postinstall",
"type": "library",
"implicitDependencies": []
},
"@storybook/preact": {
"root": "renderers/preact",
"type": "library",
"implicitDependencies": []
},
"@storybook/preact-webpack5": {
"root": "frameworks/preact-webpack5",
"type": "library",
"implicitDependencies": []
},
"@storybook/preset-html-webpack": {
"root": "presets/html-webpack",
"type": "library",
"implicitDependencies": []
},
"@storybook/preset-preact-webpack": {
"root": "presets/preact-webpack",
"type": "library",
"implicitDependencies": []
},
"@storybook/preset-react-webpack": {
"root": "presets/react-webpack",
"type": "library",
"implicitDependencies": []
},
"@storybook/preset-server-webpack": {
"root": "presets/server-webpack",
"type": "library",
"implicitDependencies": []
},
"@storybook/preset-svelte-webpack": {
"root": "presets/svelte-webpack",
"type": "library",
"implicitDependencies": []
},
"@storybook/preset-vue-webpack": {
"root": "presets/vue-webpack",
"type": "library",
"implicitDependencies": []
},
"@storybook/preset-vue3-webpack": {
"root": "presets/vue3-webpack",
"type": "library",
"implicitDependencies": []
},
"@storybook/external-docs": { "root": "examples/external-docs", "type": "library" },
"@storybook/example-doc-blocks": { "root": "examples/doc-blocks", "type": "library" },
"@storybook/addons": { "root": "lib/addons", "type": "library" },
"@storybook/api": { "root": "lib/api", "type": "library" },
"@storybook/builder-vite": { "root": "lib/builder-vite", "type": "library" },
"@storybook/builder-webpack5": { "root": "lib/builder-webpack5", "type": "library" },
"@storybook/channel-postmessage": { "root": "lib/channel-postmessage", "type": "library" },
"@storybook/channel-websocket": { "root": "lib/channel-websocket", "type": "library" },
"@storybook/channels": { "root": "lib/channels", "type": "library" },
"@storybook/cli": { "root": "lib/cli", "type": "library" },
"sb": { "root": "lib/cli-sb", "type": "library" },
"storybook": { "root": "lib/cli-storybook", "type": "library" },
"@storybook/client-api": { "root": "lib/client-api", "type": "library" },
"@storybook/client-logger": { "root": "lib/client-logger", "type": "library" },
"@storybook/codemod": { "root": "lib/codemod", "type": "library" },
"@storybook/components": { "root": "lib/components", "type": "library" },
"@storybook/core-client": { "root": "lib/core-client", "type": "library" },
"@storybook/core-common": { "root": "lib/core-common", "type": "library" },
"@storybook/core-events": { "root": "lib/core-events", "type": "library" },
"@storybook/core-server": { "root": "lib/core-server", "type": "library" },
"@storybook/instrumenter": { "root": "lib/instrumenter", "type": "library" },
"@storybook/node-logger": { "root": "lib/node-logger", "type": "library" },
"@storybook/postinstall": { "root": "lib/postinstall", "type": "library" },
"@storybook/router": { "root": "lib/router", "type": "library" },
"@storybook/source-loader": { "root": "lib/source-loader", "type": "library" },
"@storybook/store": { "root": "lib/store", "type": "library" },
"@storybook/telemetry": { "root": "lib/telemetry", "type": "library" },
"@storybook/theming": { "root": "lib/theming", "type": "library" },
"@storybook/csf-tools": { "root": "lib/csf-tools", "type": "library" },
"@storybook/ui": { "root": "lib/ui", "type": "library" },
"@storybook/preview-web": { "root": "lib/preview-web", "type": "library" },
"@storybook/blocks": { "root": "lib/blocks", "type": "library" },
"@storybook/preset-html-webpack": { "root": "presets/html-webpack", "type": "library" },
"@storybook/preset-preact-webpack": { "root": "presets/preact-webpack", "type": "library" },
"@storybook/preset-react-webpack": { "root": "presets/react-webpack", "type": "library" },
"@storybook/preset-server-webpack": { "root": "presets/server-webpack", "type": "library" },
"@storybook/preset-svelte-webpack": { "root": "presets/svelte-webpack", "type": "library" },
"@storybook/preset-vue-webpack": { "root": "presets/vue-webpack", "type": "library" },
"@storybook/preset-vue3-webpack": { "root": "presets/vue3-webpack", "type": "library" },
"@storybook/preset-web-components-webpack": {
"root": "presets/web-components-webpack",
"type": "library"
"type": "library",
"implicitDependencies": []
},
"@storybook/html": { "root": "renderers/html", "type": "library" },
"@storybook/preact": { "root": "renderers/preact", "type": "library" },
"@storybook/react": { "root": "renderers/react", "type": "library" },
"@storybook/server": { "root": "renderers/server", "type": "library" },
"@storybook/svelte": { "root": "renderers/svelte", "type": "library" },
"@storybook/vue": { "root": "renderers/vue", "type": "library" },
"@storybook/vue3": { "root": "renderers/vue3", "type": "library" },
"@storybook/web-components": { "root": "renderers/web-components", "type": "library" }
"@storybook/preview-web": {
"root": "lib/preview-web",
"type": "library",
"implicitDependencies": []
},
"@storybook/react": {
"root": "renderers/react",
"type": "library",
"implicitDependencies": []
},
"@storybook/react-vite": {
"root": "frameworks/react-vite",
"type": "library",
"implicitDependencies": []
},
"@storybook/react-webpack5": {
"root": "frameworks/react-webpack5",
"type": "library",
"implicitDependencies": []
},
"@storybook/router": {
"root": "lib/router",
"type": "library",
"implicitDependencies": []
},
"@storybook/server": {
"root": "renderers/server",
"type": "library",
"implicitDependencies": []
},
"@storybook/server-webpack5": {
"root": "frameworks/server-webpack5",
"type": "library",
"implicitDependencies": []
},
"@storybook/source-loader": {
"root": "lib/source-loader",
"type": "library",
"implicitDependencies": []
},
"@storybook/store": {
"root": "lib/store",
"type": "library",
"implicitDependencies": []
},
"@storybook/svelte": {
"root": "renderers/svelte",
"type": "library",
"implicitDependencies": []
},
"@storybook/svelte-vite": {
"root": "frameworks/svelte-vite",
"type": "library",
"implicitDependencies": []
},
"@storybook/svelte-webpack5": {
"root": "frameworks/svelte-webpack5",
"type": "library",
"implicitDependencies": []
},
"@storybook/telemetry": {
"root": "lib/telemetry",
"type": "library",
"implicitDependencies": []
},
"@storybook/theming": {
"root": "lib/theming",
"type": "library",
"implicitDependencies": []
},
"@storybook/ui": {
"root": "lib/ui",
"type": "library",
"implicitDependencies": []
},
"@storybook/vue": {
"root": "renderers/vue",
"type": "library",
"implicitDependencies": []
},
"@storybook/vue-webpack5": {
"root": "frameworks/vue-webpack5",
"type": "library",
"implicitDependencies": []
},
"@storybook/vue3": {
"root": "renderers/vue3",
"type": "library",
"implicitDependencies": []
},
"@storybook/vue3-vite": {
"root": "frameworks/vue3-vite",
"type": "library",
"implicitDependencies": []
},
"@storybook/vue3-webpack5": {
"root": "frameworks/vue3-webpack5",
"type": "library",
"implicitDependencies": []
},
"@storybook/web-components": {
"root": "renderers/web-components",
"type": "library",
"implicitDependencies": []
},
"@storybook/web-components-webpack5": {
"root": "frameworks/web-components-webpack5",
"type": "library",
"implicitDependencies": []
},
"angular-cli": {
"root": "examples/angular-cli",
"type": "library",
"implicitDependencies": []
},
"cra-kitchen-sink": {
"root": "examples/cra-kitchen-sink",
"type": "library",
"implicitDependencies": []
},
"cra-ts-essentials": {
"root": "examples/cra-ts-essentials",
"type": "library",
"implicitDependencies": []
},
"cra-ts-kitchen-sink": {
"root": "examples/cra-ts-kitchen-sink",
"type": "library",
"implicitDependencies": []
},
"ember-example": {
"root": "examples/ember-cli",
"type": "library",
"implicitDependencies": []
},
"html-kitchen-sink": {
"root": "examples/html-kitchen-sink",
"type": "library",
"implicitDependencies": []
},
"official-storybook": {
"root": "examples/official-storybook",
"type": "library",
"implicitDependencies": []
},
"preact-example": {
"root": "examples/preact-kitchen-sink",
"type": "library",
"implicitDependencies": []
},
"sb": {
"root": "lib/cli-sb",
"type": "library",
"implicitDependencies": []
},
"server-kitchen-sink": {
"root": "examples/server-kitchen-sink",
"type": "library",
"implicitDependencies": []
},
"standalone-preview": {
"root": "examples/standalone-preview",
"type": "library",
"implicitDependencies": []
},
"storybook": {
"root": "lib/cli-storybook",
"type": "library",
"implicitDependencies": []
},
"svelte-example": {
"root": "examples/svelte-kitchen-sink",
"type": "library",
"implicitDependencies": []
},
"vue-3-cli-example": {
"root": "examples/vue-3-cli",
"type": "library",
"implicitDependencies": []
},
"vue-cli-example": {
"root": "examples/vue-cli",
"type": "library",
"implicitDependencies": []
},
"vue-example": {
"root": "examples/vue-kitchen-sink",
"type": "library",
"implicitDependencies": []
},
"web-components-kitchen-sink": {
"root": "examples/web-components-kitchen-sink",
"type": "library",
"implicitDependencies": []
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -23,7 +23,7 @@
]
},
"resolutions": {
"@nrwl/cli": "12.3.4",
"@nrwl/cli": "14.6.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/experimental-utils": "5.3.0",
"@typescript-eslint/parser": "^5.15.0",
@ -58,10 +58,9 @@
"@jest/globals": "^26.6.2",
"@linear/sdk": "^1.21.0",
"@nicolo-ribaudo/chokidar-2": "^2.1.8",
"@nrwl/cli": "12.3.4",
"@nrwl/nx-cloud": "12.1.1",
"@nrwl/tao": "12.3.4",
"@nrwl/workspace": "12.3.4",
"@nrwl/cli": "14.6.1",
"@nrwl/nx-cloud": "14.6.0",
"@nrwl/workspace": "14.6.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
@ -152,6 +151,7 @@
"node-fetch": "^2.6.1",
"node-gyp": "^8.4.0",
"npmlog": "^5.0.1",
"nx": "14.6.1",
"p-limit": "^3.1.0",
"prettier": ">=2.2.1 <=2.3.0",
"pretty-hrtime": "^1.0.0",

File diff suppressed because it is too large Load Diff