chore(repo): update to nx 16.0.0-beta.5 (#16347)

This commit is contained in:
Jason Jean 2023-04-21 10:17:56 -04:00 committed by GitHub
parent ec3c642b29
commit ff8074bf75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
144 changed files with 1608 additions and 1077 deletions

View File

@ -6,7 +6,7 @@
"targets": { "targets": {
"e2e": {}, "e2e": {},
"run-e2e-tests": { "run-e2e-tests": {
"executor": "@nrwl/jest:jest", "executor": "@nx/jest:jest",
"options": { "options": {
"jestConfig": "e2e/linter/jest.config.ts", "jestConfig": "e2e/linter/jest.config.ts",
"passWithNoTests": true, "passWithNoTests": true,

View File

@ -18,7 +18,7 @@ export default defineConfig({
...cypressJsonConfig, ...cypressJsonConfig,
setupNodeEvents, setupNodeEvents,
/** /**
* TODO(@nrwl/cypress): In Cypress v12,the testIsolation option is turned on by default. * TODO(@nx/cypress): In Cypress v12,the testIsolation option is turned on by default.
* This can cause tests to start breaking where not indended. * This can cause tests to start breaking where not indended.
* You should consider enabling this once you verify tests do not depend on each other * You should consider enabling this once you verify tests do not depend on each other
* More Info: https://docs.cypress.io/guides/references/migration-guide#Test-Isolation * More Info: https://docs.cypress.io/guides/references/migration-guide#Test-Isolation

View File

@ -18,7 +18,7 @@ export default defineConfig({
...cypressJsonConfig, ...cypressJsonConfig,
setupNodeEvents, setupNodeEvents,
/** /**
* TODO(@nrwl/cypress): In Cypress v12,the testIsolation option is turned on by default. * TODO(@nx/cypress): In Cypress v12,the testIsolation option is turned on by default.
* This can cause tests to start breaking where not indended. * This can cause tests to start breaking where not indended.
* You should consider enabling this once you verify tests do not depend on each other * You should consider enabling this once you verify tests do not depend on each other
* More Info: https://docs.cypress.io/guides/references/migration-guide#Test-Isolation * More Info: https://docs.cypress.io/guides/references/migration-guide#Test-Isolation

View File

@ -18,7 +18,7 @@ export default defineConfig({
...cypressJsonConfig, ...cypressJsonConfig,
setupNodeEvents, setupNodeEvents,
/** /**
* TODO(@nrwl/cypress): In Cypress v12,the testIsolation option is turned on by default. * TODO(@nx/cypress): In Cypress v12,the testIsolation option is turned on by default.
* This can cause tests to start breaking where not indended. * This can cause tests to start breaking where not indended.
* You should consider enabling this once you verify tests do not depend on each other * You should consider enabling this once you verify tests do not depend on each other
* More Info: https://docs.cypress.io/guides/references/migration-guide#Test-Isolation * More Info: https://docs.cypress.io/guides/references/migration-guide#Test-Isolation

View File

@ -18,7 +18,7 @@ export default defineConfig({
...cypressJsonConfig, ...cypressJsonConfig,
setupNodeEvents, setupNodeEvents,
/** /**
* TODO(@nrwl/cypress): In Cypress v12,the testIsolation option is turned on by default. * TODO(@nx/cypress): In Cypress v12,the testIsolation option is turned on by default.
* This can cause tests to start breaking where not indended. * This can cause tests to start breaking where not indended.
* You should consider enabling this once you verify tests do not depend on each other * You should consider enabling this once you verify tests do not depend on each other
* More Info: https://docs.cypress.io/guides/references/migration-guide#Test-Isolation * More Info: https://docs.cypress.io/guides/references/migration-guide#Test-Isolation

View File

@ -5,7 +5,7 @@
"projectType": "application", "projectType": "application",
"targets": { "targets": {
"e2e-base": { "e2e-base": {
"executor": "@nrwl/cypress:cypress", "executor": "@nx/cypress:cypress",
"options": { "options": {
"tsConfig": "graph/client-e2e/tsconfig.e2e.json", "tsConfig": "graph/client-e2e/tsconfig.e2e.json",
"testingType": "e2e", "testingType": "e2e",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic" "runtime": "automatic"
} }

View File

@ -6,7 +6,7 @@ module.exports = {
], ],
addons: [ addons: [
'@storybook/addon-essentials', '@storybook/addon-essentials',
'@nrwl/react/plugins/storybook', '@nx/react/plugins/storybook',
'storybook-dark-mode', 'storybook-dark-mode',
], ],
}; };

View File

@ -5,9 +5,9 @@
"outDir": "" "outDir": ""
}, },
"files": [ "files": [
"../../../node_modules/@nrwl/react/typings/styled-jsx.d.ts", "../../../node_modules/@nx/react/typings/styled-jsx.d.ts",
"../../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../../node_modules/@nrwl/react/typings/image.d.ts" "../../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [

View File

@ -1,13 +1,13 @@
/* eslint-disable */ /* eslint-disable */
// nx-ignore-next-line // nx-ignore-next-line
const nxPreset = require('@nrwl/jest/preset').default; const nxPreset = require('@nx/jest/preset').default;
export default { export default {
...nxPreset, ...nxPreset,
displayName: 'graph-client', displayName: 'graph-client',
transform: { transform: {
'^(?!.*\\.(js|jsx|ts|tsx|css|json)$)': '@nrwl/react/plugins/jest', '^(?!.*\\.(js|jsx|ts|tsx|css|json)$)': '@nx/react/plugins/jest',
'^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nrwl/next/babel'] }], '^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nx/next/babel'] }],
}, },
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/nx-dev/nx-dev', coverageDirectory: '../../coverage/nx-dev/nx-dev',

View File

@ -31,7 +31,7 @@
} }
}, },
"build-base": { "build-base": {
"executor": "@nrwl/webpack:webpack", "executor": "@nx/webpack:webpack",
"options": { "options": {
"maxWorkers": 8, "maxWorkers": 8,
"outputPath": "build/apps/graph", "outputPath": "build/apps/graph",
@ -182,7 +182,7 @@
"outputs": ["{options.outputPath}"] "outputs": ["{options.outputPath}"]
}, },
"serve-base": { "serve-base": {
"executor": "@nrwl/webpack:dev-server", "executor": "@nx/webpack:dev-server",
"configurations": { "configurations": {
"dev": { "dev": {
"buildTarget": "graph-client:build-base:dev", "buildTarget": "graph-client:build-base:dev",
@ -243,7 +243,7 @@
"lint": {}, "lint": {},
"test": {}, "test": {},
"storybook": { "storybook": {
"executor": "@nrwl/storybook:storybook", "executor": "@nx/storybook:storybook",
"options": { "options": {
"uiFramework": "@storybook/react", "uiFramework": "@storybook/react",
"port": 4400, "port": 4400,
@ -256,7 +256,7 @@
} }
}, },
"build-storybook": { "build-storybook": {
"executor": "@nrwl/storybook:build", "executor": "@nx/storybook:build",
"outputs": ["{options.outputDir}"], "outputs": ["{options.outputDir}"],
"options": { "options": {
"uiFramework": "@storybook/react", "uiFramework": "@storybook/react",

View File

@ -1,7 +1,7 @@
const path = require('path'); const path = require('path');
// nx-ignore-next-line // nx-ignore-next-line
const { createGlobPatternsForDependencies } = require('@nrwl/react/tailwind'); const { createGlobPatternsForDependencies } = require('@nx/react/tailwind');
module.exports = { module.exports = {
content: [ content: [

View File

@ -6,8 +6,8 @@
"lib": ["DOM", "es2019"] "lib": ["DOM", "es2019"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"**/*.spec.ts", "**/*.spec.ts",

View File

@ -19,7 +19,7 @@
"jest.config.ts" "jest.config.ts"
], ],
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
] ]
} }

View File

@ -1,7 +1,7 @@
// nx-ignore-next-line // nx-ignore-next-line
const { withNx, composePlugins } = require('@nrwl/webpack'); const { withNx, composePlugins } = require('@nx/webpack');
// nx-ignore-next-line // nx-ignore-next-line
const { withReact } = require('@nrwl/react'); const { withReact } = require('@nx/react');
module.exports = composePlugins(withNx(), withReact(), (config, context) => { module.exports = composePlugins(withNx(), withReact(), (config, context) => {
return { return {

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -4,5 +4,5 @@ module.exports = {
'../src/lib/**/*.stories.mdx', '../src/lib/**/*.stories.mdx',
'../src/lib/**/*.stories.@(js|jsx|ts|tsx)', '../src/lib/**/*.stories.@(js|jsx|ts|tsx)',
], ],
addons: ['@storybook/addon-essentials', '@nrwl/react/plugins/storybook'], addons: ['@storybook/addon-essentials', '@nx/react/plugins/storybook'],
}; };

View File

@ -5,9 +5,9 @@
"outDir": "" "outDir": ""
}, },
"files": [ "files": [
"../../../node_modules/@nrwl/react/typings/styled-jsx.d.ts", "../../../node_modules/@nx/react/typings/styled-jsx.d.ts",
"../../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../../node_modules/@nrwl/react/typings/image.d.ts" "../../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"../**/*.spec.ts", "../**/*.spec.ts",

View File

@ -8,7 +8,7 @@
"lint": {}, "lint": {},
"test": {}, "test": {},
"storybook": { "storybook": {
"executor": "@nrwl/storybook:storybook", "executor": "@nx/storybook:storybook",
"options": { "options": {
"uiFramework": "@storybook/react", "uiFramework": "@storybook/react",
"port": 4400, "port": 4400,
@ -21,7 +21,7 @@
} }
}, },
"build-storybook": { "build-storybook": {
"executor": "@nrwl/storybook:build", "executor": "@nx/storybook:build",
"outputs": ["{options.outputDir}"], "outputs": ["{options.outputDir}"],
"options": { "options": {
"uiFramework": "@storybook/react", "uiFramework": "@storybook/react",

View File

@ -6,8 +6,8 @@
"lib": ["dom"] "lib": ["dom"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"jest.config.ts", "jest.config.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -4,5 +4,5 @@ module.exports = {
'../src/lib/**/*.stories.mdx', '../src/lib/**/*.stories.mdx',
'../src/lib/**/*.stories.@(js|jsx|ts|tsx)', '../src/lib/**/*.stories.@(js|jsx|ts|tsx)',
], ],
addons: ['@storybook/addon-essentials', '@nrwl/react/plugins/storybook'], addons: ['@storybook/addon-essentials', '@nx/react/plugins/storybook'],
}; };

View File

@ -5,9 +5,9 @@
"outDir": "" "outDir": ""
}, },
"files": [ "files": [
"../../../node_modules/@nrwl/react/typings/styled-jsx.d.ts", "../../../node_modules/@nx/react/typings/styled-jsx.d.ts",
"../../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../../node_modules/@nrwl/react/typings/image.d.ts" "../../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [

View File

@ -8,7 +8,7 @@
"lint": {}, "lint": {},
"test": {}, "test": {},
"storybook": { "storybook": {
"executor": "@nrwl/storybook:storybook", "executor": "@nx/storybook:storybook",
"options": { "options": {
"uiFramework": "@storybook/react", "uiFramework": "@storybook/react",
"port": 4400, "port": 4400,
@ -21,7 +21,7 @@
} }
}, },
"build-storybook": { "build-storybook": {
"executor": "@nrwl/storybook:build", "executor": "@nx/storybook:build",
"outputs": ["{options.outputDir}"], "outputs": ["{options.outputDir}"],
"options": { "options": {
"uiFramework": "@storybook/react", "uiFramework": "@storybook/react",

View File

@ -6,8 +6,8 @@
"lib": ["DOM", "es2019"] "lib": ["DOM", "es2019"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"jest.config.ts", "jest.config.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -4,5 +4,5 @@ module.exports = {
'../src/lib/**/*.stories.mdx', '../src/lib/**/*.stories.mdx',
'../src/lib/**/*.stories.@(js|jsx|ts|tsx)', '../src/lib/**/*.stories.@(js|jsx|ts|tsx)',
], ],
addons: ['@storybook/addon-essentials', '@nrwl/react/plugins/storybook'], addons: ['@storybook/addon-essentials', '@nx/react/plugins/storybook'],
}; };

View File

@ -5,9 +5,9 @@
"outDir": "" "outDir": ""
}, },
"files": [ "files": [
"../../../node_modules/@nrwl/react/typings/styled-jsx.d.ts", "../../../node_modules/@nx/react/typings/styled-jsx.d.ts",
"../../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../../node_modules/@nrwl/react/typings/image.d.ts" "../../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"../**/*.spec.ts", "../**/*.spec.ts",

View File

@ -8,7 +8,7 @@
"lint": {}, "lint": {},
"test": {}, "test": {},
"storybook": { "storybook": {
"executor": "@nrwl/storybook:storybook", "executor": "@nx/storybook:storybook",
"options": { "options": {
"uiFramework": "@storybook/react", "uiFramework": "@storybook/react",
"port": 4400, "port": 4400,
@ -21,7 +21,7 @@
} }
}, },
"build-storybook": { "build-storybook": {
"executor": "@nrwl/storybook:build", "executor": "@nx/storybook:build",
"outputs": ["{options.outputDir}"], "outputs": ["{options.outputDir}"],
"options": { "options": {
"uiFramework": "@storybook/react", "uiFramework": "@storybook/react",

View File

@ -5,8 +5,8 @@
"types": ["node"] "types": ["node"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"jest.config.ts", "jest.config.ts",

View File

@ -1,4 +1,4 @@
const { getJestProjects } = require('@nrwl/jest'); const { getJestProjects } = require('@nx/jest');
export default { export default {
projects: getJestProjects(), projects: getJestProjects(),

View File

@ -1,4 +1,4 @@
const nxPreset = require('@nrwl/jest/preset').default; const nxPreset = require('@nx/jest/preset').default;
process.env.npm_config_registry = `http://localhost:4872`; process.env.npm_config_registry = `http://localhost:4872`;
process.env.YARN_REGISTRY = `http://localhost:4872`; process.env.YARN_REGISTRY = `http://localhost:4872`;

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/js/babel", "@nx/js/babel",
{ {
"useBuiltIns": "usage" "useBuiltIns": "usage"
} }

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -2,7 +2,7 @@
export default { export default {
displayName: 'nx-dev-feature-analytics', displayName: 'nx-dev-feature-analytics',
transform: { transform: {
'^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nrwl/next/babel'] }], '^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nx/next/babel'] }],
}, },
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/nx-dev/feature-analytics', coverageDirectory: '../../coverage/nx-dev/feature-analytics',

View File

@ -5,8 +5,8 @@
"types": ["node"] "types": ["node"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"**/*.spec.ts", "**/*.spec.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -2,7 +2,7 @@
export default { export default {
displayName: 'nx-dev-feature-doc-viewer', displayName: 'nx-dev-feature-doc-viewer',
transform: { transform: {
'^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nrwl/next/babel'] }], '^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nx/next/babel'] }],
}, },
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/nx-dev/feature-doc-viewer', coverageDirectory: '../../coverage/nx-dev/feature-doc-viewer',

View File

@ -6,8 +6,8 @@
"lib": ["dom"] "lib": ["dom"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"**/*.spec.ts", "**/*.spec.ts",

View File

@ -1,4 +1,4 @@
{ {
"presets": ["@nrwl/next/babel"], "presets": ["@nx/next/babel"],
"plugins": [] "plugins": []
} }

View File

@ -6,8 +6,8 @@
"lib": ["dom"] "lib": ["dom"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/next/typings/image.d.ts" "../../node_modules/@nx/next/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"**/*.spec.ts", "**/*.spec.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -2,7 +2,7 @@
export default { export default {
displayName: 'nx-dev-feature-search', displayName: 'nx-dev-feature-search',
transform: { transform: {
'^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nrwl/next/babel'] }], '^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nx/next/babel'] }],
}, },
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/nx-dev/feature-search', coverageDirectory: '../../coverage/nx-dev/feature-search',

View File

@ -6,8 +6,8 @@
"lib": ["dom"] "lib": ["dom"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"**/*.spec.ts", "**/*.spec.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/js/babel", "@nx/js/babel",
{ {
"useBuiltIns": "usage" "useBuiltIns": "usage"
} }

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/js/babel", "@nx/js/babel",
{ {
"useBuiltIns": "usage" "useBuiltIns": "usage"
} }

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/js/babel", "@nx/js/babel",
{ {
"useBuiltIns": "usage" "useBuiltIns": "usage"
} }

View File

@ -16,7 +16,7 @@ export default defineConfig({
...nxE2EPreset(__dirname), ...nxE2EPreset(__dirname),
...cypressJsonConfig, ...cypressJsonConfig,
/** /**
* TODO(@nrwl/cypress): In Cypress v12,the testIsolation option is turned on by default. * TODO(@nx/cypress): In Cypress v12,the testIsolation option is turned on by default.
* This can cause tests to start breaking where not indended. * This can cause tests to start breaking where not indended.
* You should consider enabling this once you verify tests do not depend on each other * You should consider enabling this once you verify tests do not depend on each other
* More Info: https://docs.cypress.io/guides/references/migration-guide#Test-Isolation * More Info: https://docs.cypress.io/guides/references/migration-guide#Test-Isolation

View File

@ -11,7 +11,7 @@
"projects": "{dependencies}" "projects": "{dependencies}"
} }
], ],
"executor": "@nrwl/cypress:cypress", "executor": "@nx/cypress:cypress",
"options": { "options": {
"cypressConfig": "nx-dev/nx-dev-e2e/cypress.config.ts", "cypressConfig": "nx-dev/nx-dev-e2e/cypress.config.ts",
"devServerTarget": "nx-dev:serve:production", "devServerTarget": "nx-dev:serve:production",

View File

@ -1,12 +1,12 @@
/* eslint-disable */ /* eslint-disable */
import nxPreset from '@nrwl/jest/preset'; import nxPreset from '@nx/jest/preset';
module.exports = { module.exports = {
...nxPreset, ...nxPreset,
displayName: 'nx-dev', displayName: 'nx-dev',
transform: { transform: {
'^(?!.*\\.(js|jsx|ts|tsx|css|json)$)': '@nrwl/react/plugins/jest', '^(?!.*\\.(js|jsx|ts|tsx|css|json)$)': '@nx/react/plugins/jest',
'^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nrwl/next/babel'] }], '^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nx/next/babel'] }],
}, },
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/nx-dev/nx-dev', coverageDirectory: '../../coverage/nx-dev/nx-dev',

View File

@ -1,5 +1,5 @@
// nx-ignore-next-line // nx-ignore-next-line
const { withNx } = require('@nrwl/next/plugins/with-nx'); const { withNx } = require('@nx/next/plugins/with-nx');
const { copySync } = require('fs-extra'); const { copySync } = require('fs-extra');
const path = require('path'); const path = require('path');
const redirectRules = require('./redirect-rules.config'); const redirectRules = require('./redirect-rules.config');

View File

@ -44,7 +44,7 @@
} }
}, },
"build-base": { "build-base": {
"executor": "@nrwl/next:build", "executor": "@nx/next:build",
"outputs": ["{options.outputPath}"], "outputs": ["{options.outputPath}"],
"options": { "options": {
"root": "nx-dev/nx-dev", "root": "nx-dev/nx-dev",
@ -58,7 +58,7 @@
} }
}, },
"serve": { "serve": {
"executor": "@nrwl/next:server", "executor": "@nx/next:server",
"options": { "options": {
"buildTarget": "nx-dev:build-base", "buildTarget": "nx-dev:build-base",
"dev": true "dev": true
@ -94,7 +94,7 @@
} }
}, },
"export": { "export": {
"executor": "@nrwl/next:export", "executor": "@nx/next:export",
"options": { "options": {
"buildTarget": "nx-dev:build:production" "buildTarget": "nx-dev:build:production"
} }

View File

@ -1,5 +1,5 @@
const path = require('path'); const path = require('path');
const { createGlobPatternsForDependencies } = require('@nrwl/next/tailwind'); const { createGlobPatternsForDependencies } = require('@nx/next/tailwind');
if (!createGlobPatternsForDependencies(__dirname).length) if (!createGlobPatternsForDependencies(__dirname).length)
throw Error('GRAPH ISSUE: No dependency found when many are expected.'); throw Error('GRAPH ISSUE: No dependency found when many are expected.');

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -5,8 +5,8 @@
"types": ["node"] "types": ["node"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"**/*.spec.ts", "**/*.spec.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -2,7 +2,7 @@
export default { export default {
displayName: 'nx-dev-ui-common', displayName: 'nx-dev-ui-common',
transform: { transform: {
'^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nrwl/next/babel'] }], '^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nx/next/babel'] }],
}, },
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/nx-dev/ui-common', coverageDirectory: '../../coverage/nx-dev/ui-common',

View File

@ -6,8 +6,8 @@
"lib": ["dom"] "lib": ["dom"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"**/*.spec.ts", "**/*.spec.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -6,8 +6,8 @@
"lib": ["dom"] "lib": ["dom"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"**/*.spec.ts", "**/*.spec.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -2,7 +2,7 @@
export default { export default {
displayName: 'nx-dev-ui-conference', displayName: 'nx-dev-ui-conference',
transform: { transform: {
'^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nrwl/next/babel'] }], '^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nx/next/babel'] }],
}, },
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/nx-dev/ui-conference', coverageDirectory: '../../coverage/nx-dev/ui-conference',

View File

@ -5,8 +5,8 @@
"types": ["node"] "types": ["node"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"**/*.spec.ts", "**/*.spec.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -7,7 +7,7 @@
"targets": { "targets": {
"lint": {}, "lint": {},
"xtest": { "xtest": {
"executor": "@nrwl/jest:jest", "executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/nx-dev/ui-home"], "outputs": ["{workspaceRoot}/coverage/nx-dev/ui-home"],
"options": { "options": {
"jestConfig": "nx-dev/ui-home/jest.config.ts", "jestConfig": "nx-dev/ui-home/jest.config.ts",

View File

@ -6,8 +6,8 @@
"types": ["node", "dom"] "types": ["node", "dom"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"**/*.spec.ts", "**/*.spec.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -6,8 +6,8 @@
"lib": ["DOM", "es2019"] "lib": ["DOM", "es2019"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"jest.config.ts", "jest.config.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -2,7 +2,7 @@
export default { export default {
displayName: 'nx-dev-ui-member-card', displayName: 'nx-dev-ui-member-card',
transform: { transform: {
'^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nrwl/next/babel'] }], '^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nx/next/babel'] }],
}, },
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/nx-dev/ui-member-card', coverageDirectory: '../../coverage/nx-dev/ui-member-card',

View File

@ -6,8 +6,8 @@
"lib": ["DOM"] "lib": ["DOM"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"**/*.spec.ts", "**/*.spec.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -6,7 +6,7 @@
"tags": [], "tags": [],
"targets": { "targets": {
"lint": { "lint": {
"executor": "@nrwl/linter:eslint", "executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"], "outputs": ["{options.outputFile}"],
"options": { "options": {
"lintFilePatterns": ["nx-dev/ui-primitives/**/*.{ts,tsx,js,jsx}"] "lintFilePatterns": ["nx-dev/ui-primitives/**/*.{ts,tsx,js,jsx}"]

View File

@ -5,8 +5,8 @@
"types": ["node"] "types": ["node"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"jest.config.ts", "jest.config.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -5,8 +5,8 @@
"types": ["node"] "types": ["node"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"jest.config.ts", "jest.config.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -2,7 +2,7 @@
export default { export default {
displayName: 'nx-dev-ui-sponsor-card', displayName: 'nx-dev-ui-sponsor-card',
transform: { transform: {
'^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nrwl/next/babel'] }], '^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nx/next/babel'] }],
}, },
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/nx-dev/ui-sponsor-card', coverageDirectory: '../../coverage/nx-dev/ui-sponsor-card',

View File

@ -5,8 +5,8 @@
"types": ["node"] "types": ["node"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/next/typings/image.d.ts" "../../node_modules/@nx/next/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"**/*.spec.ts", "**/*.spec.ts",

View File

@ -1,7 +1,7 @@
{ {
"presets": [ "presets": [
[ [
"@nrwl/react/babel", "@nx/react/babel",
{ {
"runtime": "automatic", "runtime": "automatic",
"useBuiltIns": "usage" "useBuiltIns": "usage"

View File

@ -6,8 +6,8 @@
"lib": ["dom"] "lib": ["dom"]
}, },
"files": [ "files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", "../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts" "../../node_modules/@nx/react/typings/image.d.ts"
], ],
"exclude": [ "exclude": [
"jest.config.ts", "jest.config.ts",

View File

@ -63,7 +63,7 @@
"build-base": { "build-base": {
"dependsOn": ["^build-base", "build-native"], "dependsOn": ["^build-base", "build-native"],
"inputs": ["production", "^production"], "inputs": ["production", "^production"],
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"options": { "options": {
"outputPath": "build/{projectRoot}", "outputPath": "build/{projectRoot}",
"tsConfig": "{projectRoot}/tsconfig.lib.json", "tsConfig": "{projectRoot}/tsconfig.lib.json",
@ -80,7 +80,7 @@
"test": { "test": {
"dependsOn": ["test-native", "build-native", "^build-native"], "dependsOn": ["test-native", "build-native", "^build-native"],
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"executor": "@nrwl/jest:jest", "executor": "@nx/jest:jest",
"options": { "options": {
"jestConfig": "{projectRoot}/jest.config.ts", "jestConfig": "{projectRoot}/jest.config.ts",
"passWithNoTests": true "passWithNoTests": true
@ -94,7 +94,7 @@
"{workspaceRoot}/.eslintrc.json", "{workspaceRoot}/.eslintrc.json",
"{workspaceRoot}/tools/eslint-rules/**/*" "{workspaceRoot}/tools/eslint-rules/**/*"
], ],
"executor": "@nrwl/linter:eslint", "executor": "@nx/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"{projectRoot}/**/*.{ts,tsx,js,jsx}", "{projectRoot}/**/*.{ts,tsx,js,jsx}",
@ -176,7 +176,7 @@
}, },
"run-e2e-tests": { "run-e2e-tests": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"executor": "@nrwl/jest:jest", "executor": "@nx/jest:jest",
"options": { "options": {
"jestConfig": "{projectRoot}/jest.config.ts", "jestConfig": "{projectRoot}/jest.config.ts",
"passWithNoTests": true, "passWithNoTests": true,

View File

@ -58,19 +58,9 @@
"@ngrx/router-store": "~15.3.0", "@ngrx/router-store": "~15.3.0",
"@ngrx/store": "~15.3.0", "@ngrx/store": "~15.3.0",
"@nguniversal/builders": "~15.2.0", "@nguniversal/builders": "~15.2.0",
"@nrwl/angular": "16.0.0-beta.0", "@nrwl/eslint-plugin-nx": "16.0.0-beta.5",
"@nrwl/cypress": "16.0.0-beta.0", "nx-cloud": "16.0.1",
"@nrwl/devkit": "16.0.0-beta.0", "@nx/webpack": "16.0.0-beta.5",
"@nrwl/eslint-plugin-nx": "16.0.0-beta.0",
"@nrwl/jest": "16.0.0-beta.0",
"@nrwl/js": "16.0.0-beta.0",
"@nrwl/linter": "16.0.0-beta.0",
"@nrwl/next": "16.0.0-beta.0",
"nx-cloud": "16.0.0",
"@nrwl/react": "16.0.0-beta.0",
"@nrwl/storybook": "16.0.0-beta.0",
"@nrwl/web": "16.0.0-beta.0",
"@nrwl/webpack": "16.0.0-beta.0",
"@parcel/watcher": "2.0.4", "@parcel/watcher": "2.0.4",
"@phenomnomnominal/tsquery": "~5.0.1", "@phenomnomnominal/tsquery": "~5.0.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
@ -93,7 +83,7 @@
"@svgr/rollup": "^6.1.2", "@svgr/rollup": "^6.1.2",
"@svgr/webpack": "^6.1.2", "@svgr/webpack": "^6.1.2",
"@swc-node/register": "^1.4.2", "@swc-node/register": "^1.4.2",
"@swc/cli": "~0.1.55", "@swc/cli": "0.1.62",
"@swc/core": "^1.3.51", "@swc/core": "^1.3.51",
"@swc/jest": "^0.2.20", "@swc/jest": "^0.2.20",
"@testing-library/react": "13.4.0", "@testing-library/react": "13.4.0",
@ -201,7 +191,7 @@
"next-sitemap": "^3.1.10", "next-sitemap": "^3.1.10",
"ng-packagr": "~15.2.2", "ng-packagr": "~15.2.2",
"node-fetch": "^2.6.7", "node-fetch": "^2.6.7",
"nx": "16.0.0-beta.0", "nx": "16.0.0-beta.5",
"octokit": "^2.0.14", "octokit": "^2.0.14",
"open": "^8.4.0", "open": "^8.4.0",
"ora": "5.3.0", "ora": "5.3.0",
@ -265,7 +255,17 @@
"webpack-subresource-integrity": "^5.1.0", "webpack-subresource-integrity": "^5.1.0",
"xstate": "4.34.0", "xstate": "4.34.0",
"yargs": "^17.6.2", "yargs": "^17.6.2",
"yargs-parser": "21.1.1" "yargs-parser": "21.1.1",
"@nx/devkit": "16.0.0-beta.5",
"@nx/js": "16.0.0-beta.5",
"@nx/linter": "16.0.0-beta.5",
"@nx/cypress": "16.0.0-beta.5",
"@nx/storybook": "16.0.0-beta.5",
"@nx/web": "16.0.0-beta.5",
"@nx/react": "16.0.0-beta.5",
"@nx/jest": "16.0.0-beta.5",
"@nx/next": "16.0.0-beta.5",
"@nx/angular": "16.0.0-beta.5"
}, },
"author": "Victor Savkin", "author": "Victor Savkin",
"license": "MIT", "license": "MIT",
@ -282,7 +282,7 @@
"@markdoc/markdoc": "0.2.2", "@markdoc/markdoc": "0.2.2",
"@monaco-editor/react": "^4.4.6", "@monaco-editor/react": "^4.4.6",
"@napi-rs/canvas": "^0.1.19", "@napi-rs/canvas": "^0.1.19",
"@swc/helpers": "~0.5.0", "@swc/helpers": "0.5.0",
"@tailwindcss/aspect-ratio": "^0.4.2", "@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3", "@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2", "@tailwindcss/line-clamp": "^0.4.2",

View File

@ -6,7 +6,7 @@
"targets": { "targets": {
"build-ng": { "build-ng": {
"dependsOn": ["^build", "build-base"], "dependsOn": ["^build", "build-base"],
"executor": "@nrwl/angular:package", "executor": "@nx/angular:package",
"options": { "options": {
"project": "packages-legacy/angular/ng-package.json", "project": "packages-legacy/angular/ng-package.json",
"tsConfig": "packages-legacy/angular/tsconfig.json" "tsConfig": "packages-legacy/angular/tsconfig.json"
@ -14,7 +14,7 @@
"outputs": ["build/packages/angular-legacy"] "outputs": ["build/packages/angular-legacy"]
}, },
"build-base": { "build-base": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/angular/index.ts", "main": "packages-legacy/angular/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/cypress/index.ts", "main": "packages-legacy/cypress/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/detox/index.ts", "main": "packages-legacy/detox/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/devkit/index.ts", "main": "packages-legacy/devkit/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/esbuild/index.ts", "main": "packages-legacy/esbuild/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/eslint-plugin-nx/index.ts", "main": "packages-legacy/eslint-plugin-nx/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/expo/index.ts", "main": "packages-legacy/expo/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/express/index.ts", "main": "packages-legacy/express/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/jest/index.ts", "main": "packages-legacy/jest/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/js/index.ts", "main": "packages-legacy/js/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/linter/index.ts", "main": "packages-legacy/linter/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/nest/index.ts", "main": "packages-legacy/nest/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/next/index.ts", "main": "packages-legacy/next/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/node/index.ts", "main": "packages-legacy/node/index.ts",

View File

@ -5,7 +5,7 @@
"projectType": "library", "projectType": "library",
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/js:tsc", "executor": "@nx/js:tsc",
"dependsOn": ["^build"], "dependsOn": ["^build"],
"options": { "options": {
"main": "packages-legacy/nx-plugin/index.ts", "main": "packages-legacy/nx-plugin/index.ts",

Some files were not shown because too many files have changed in this diff Show More