docs(nxdev): move conference components to ui (#9796)

This commit is contained in:
Benjamin Cabanes 2022-04-12 10:48:49 -04:00 committed by GitHub
parent a622ee5f08
commit 8a7e5551d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 23 additions and 24 deletions

View File

@ -15,7 +15,6 @@
"styles": ["dep-graph/client/src/styles.scss"], "styles": ["dep-graph/client/src/styles.scss"],
"scripts": [], "scripts": [],
"assets": [], "assets": [],
"webpackConfig": "dep-graph/client/webpack.config.js" "webpackConfig": "dep-graph/client/webpack.config.js"
}, },
"configurations": { "configurations": {

View File

@ -1,7 +0,0 @@
# nx-dev-feature-conf
This library was generated with [Nx](https://nx.dev).
## Running unit tests
Run `nx test nx-dev-feature-conf` to execute the unit tests via [Jest](https://jestjs.io).

View File

@ -4,7 +4,7 @@ import {
ConfSpeakers, ConfSpeakers,
ConfSponsors, ConfSponsors,
ConfWorkshop, ConfWorkshop,
} from '@nrwl/nx-dev/feature-conf'; } from '@nrwl/nx-dev/ui-conference';
import { Footer, Header } from '@nrwl/nx-dev/ui-common'; import { Footer, Header } from '@nrwl/nx-dev/ui-common';
import { NextSeo } from 'next-seo'; import { NextSeo } from 'next-seo';
import Link from 'next/link'; import Link from 'next/link';

View File

@ -0,0 +1,7 @@
# nx-dev-ui-conference
This library was generated with [Nx](https://nx.dev).
## Running unit tests
Run `nx test nx-dev-ui-conference` to execute the unit tests via [Jest](https://jestjs.io).

View File

@ -1,10 +1,10 @@
module.exports = { module.exports = {
displayName: 'nx-dev-feature-conf', displayName: 'nx-dev-ui-conference',
preset: '../../jest.preset.js', preset: '../../jest.preset.js',
transform: { transform: {
'^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nrwl/next/babel'] }], '^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nrwl/next/babel'] }],
}, },
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/nx-dev/feature-conf', coverageDirectory: '../../coverage/nx-dev/ui-conference',
setupFilesAfterEnv: ['<rootDir>/test-setup.ts'], setupFilesAfterEnv: ['<rootDir>/test-setup.ts'],
}; };

View File

@ -1,21 +1,21 @@
{ {
"root": "nx-dev/feature-conf", "root": "nx-dev/ui-conference",
"sourceRoot": "nx-dev/feature-conf/src", "sourceRoot": "nx-dev/ui-conference/src",
"projectType": "library", "projectType": "library",
"tags": ["scope:nx-dev", "type:feature"], "tags": ["scope:nx-dev", "type:feature"],
"targets": { "targets": {
"lint": { "lint": {
"executor": "@nrwl/linter:eslint", "executor": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": ["nx-dev/feature-conf/**/*.{ts,tsx,js,jsx}"] "lintFilePatterns": ["nx-dev/ui-conference/**/*.{ts,tsx,js,jsx}"]
}, },
"outputs": ["{options.outputFile}"] "outputs": ["{options.outputFile}"]
}, },
"test": { "test": {
"executor": "@nrwl/jest:jest", "executor": "@nrwl/jest:jest",
"outputs": ["coverage/nx-dev/feature-conf"], "outputs": ["coverage/nx-dev/ui-conference"],
"options": { "options": {
"jestConfig": "nx-dev/feature-conf/jest.config.js", "jestConfig": "nx-dev/ui-conference/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
} }
} }

View File

@ -49,15 +49,14 @@
"./nx-dev/data-access-documents/src/node.index.ts" "./nx-dev/data-access-documents/src/node.index.ts"
], ],
"@nrwl/nx-dev/data-access-packages": [ "@nrwl/nx-dev/data-access-packages": [
"nx-dev/data-access-packages/src/index.ts" "./nx-dev/data-access-packages/src/index.ts"
], ],
"@nrwl/nx-dev/data-access-packages/node-only": [ "@nrwl/nx-dev/data-access-packages/node-only": [
"nx-dev/data-access-packages/src/node.index.ts" "./nx-dev/data-access-packages/src/node.index.ts"
], ],
"@nrwl/nx-dev/feature-analytics": [ "@nrwl/nx-dev/feature-analytics": [
"./nx-dev/feature-analytics/src/index.ts" "./nx-dev/feature-analytics/src/index.ts"
], ],
"@nrwl/nx-dev/feature-conf": ["./nx-dev/feature-conf/src/index.ts"],
"@nrwl/nx-dev/feature-doc-viewer": [ "@nrwl/nx-dev/feature-doc-viewer": [
"./nx-dev/feature-doc-viewer/src/index.ts" "./nx-dev/feature-doc-viewer/src/index.ts"
], ],
@ -69,12 +68,13 @@
"@nrwl/nx-dev/feature-versions-and-flavors": [ "@nrwl/nx-dev/feature-versions-and-flavors": [
"./nx-dev/feature-versions-and-flavors/src/index.ts" "./nx-dev/feature-versions-and-flavors/src/index.ts"
], ],
"@nrwl/nx-dev/models-document": ["nx-dev/models-document/src/index.ts"], "@nrwl/nx-dev/models-document": ["./nx-dev/models-document/src/index.ts"],
"@nrwl/nx-dev/models-menu": ["nx-dev/models-menu/src/index.ts"], "@nrwl/nx-dev/models-menu": ["./nx-dev/models-menu/src/index.ts"],
"@nrwl/nx-dev/models-package": ["nx-dev/models-package/src/index.ts"], "@nrwl/nx-dev/models-package": ["./nx-dev/models-package/src/index.ts"],
"@nrwl/nx-dev/ui-commands": ["./nx-dev/ui-commands/src/index.ts"], "@nrwl/nx-dev/ui-commands": ["./nx-dev/ui-commands/src/index.ts"],
"@nrwl/nx-dev/ui-common": ["./nx-dev/ui-common/src/index.ts"], "@nrwl/nx-dev/ui-common": ["./nx-dev/ui-common/src/index.ts"],
"@nrwl/nx-dev/ui-community": ["nx-dev/ui-community/src/index.ts"], "@nrwl/nx-dev/ui-community": ["./nx-dev/ui-community/src/index.ts"],
"@nrwl/nx-dev/ui-conference": ["./nx-dev/ui-conference/src/index.ts"],
"@nrwl/nx-dev/ui-home": ["./nx-dev/ui-home/src/index.ts"], "@nrwl/nx-dev/ui-home": ["./nx-dev/ui-home/src/index.ts"],
"@nrwl/nx-dev/ui-member-card": ["./nx-dev/ui-member-card/src/index.ts"], "@nrwl/nx-dev/ui-member-card": ["./nx-dev/ui-member-card/src/index.ts"],
"@nrwl/nx-dev/ui-sponsor-card": ["./nx-dev/ui-sponsor-card/src/index.ts"], "@nrwl/nx-dev/ui-sponsor-card": ["./nx-dev/ui-sponsor-card/src/index.ts"],

View File

@ -48,7 +48,6 @@
"nx-dev-data-access-packages": "nx-dev/data-access-packages", "nx-dev-data-access-packages": "nx-dev/data-access-packages",
"nx-dev-e2e": "nx-dev/nx-dev-e2e", "nx-dev-e2e": "nx-dev/nx-dev-e2e",
"nx-dev-feature-analytics": "nx-dev/feature-analytics", "nx-dev-feature-analytics": "nx-dev/feature-analytics",
"nx-dev-feature-conf": "nx-dev/feature-conf",
"nx-dev-feature-doc-viewer": "nx-dev/feature-doc-viewer", "nx-dev-feature-doc-viewer": "nx-dev/feature-doc-viewer",
"nx-dev-feature-package-schema-viewer": "nx-dev/feature-package-schema-viewer", "nx-dev-feature-package-schema-viewer": "nx-dev/feature-package-schema-viewer",
"nx-dev-feature-search": "nx-dev/feature-search", "nx-dev-feature-search": "nx-dev/feature-search",
@ -58,6 +57,7 @@
"nx-dev-ui-commands": "nx-dev/ui-commands", "nx-dev-ui-commands": "nx-dev/ui-commands",
"nx-dev-ui-common": "nx-dev/ui-common", "nx-dev-ui-common": "nx-dev/ui-common",
"nx-dev-ui-community": "nx-dev/ui-community", "nx-dev-ui-community": "nx-dev/ui-community",
"nx-dev-ui-conference": "nx-dev/ui-conference",
"nx-dev-ui-home": "nx-dev/ui-home", "nx-dev-ui-home": "nx-dev/ui-home",
"nx-dev-ui-member-card": "nx-dev/ui-member-card", "nx-dev-ui-member-card": "nx-dev/ui-member-card",
"nx-dev-ui-sponsor-card": "nx-dev/ui-sponsor-card", "nx-dev-ui-sponsor-card": "nx-dev/ui-sponsor-card",