├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── extensions.json ├── README.md ├── apps ├── dashboard-e2e │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── project.json │ ├── src │ │ ├── e2e │ │ │ └── app.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── e2e.ts │ └── tsconfig.json ├── dashboard │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── module-federation.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ └── app.routes.ts │ │ ├── assets │ │ │ └── module-federation.manifest.json │ │ ├── bootstrap.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── styles.css │ │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── webpack.config.ts │ └── webpack.prod.config.ts ├── employee-e2e │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── project.json │ ├── src │ │ ├── e2e │ │ │ └── app.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── e2e.ts │ └── tsconfig.json ├── employee │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── module-federation.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── app.routes.ts │ │ │ └── nx-welcome.component.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── module-federation.manifest.json │ │ ├── bootstrap.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── styles.css │ │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── webpack.config.ts ├── login-e2e │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── project.json │ ├── src │ │ ├── e2e │ │ │ └── app.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── e2e.ts │ └── tsconfig.json ├── login │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── module-federation.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.config.ts │ │ │ ├── app.routes.ts │ │ │ └── remote-entry │ │ │ │ ├── entry.component.ts │ │ │ │ ├── entry.routes.ts │ │ │ │ └── nx-welcome.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── bootstrap.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── styles.css │ │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── webpack.config.ts │ └── webpack.prod.config.ts ├── todo-e2e │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── project.json │ ├── src │ │ ├── e2e │ │ │ └── app.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── e2e.ts │ └── tsconfig.json └── todo │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── module-federation.config.ts │ ├── project.json │ ├── src │ ├── app │ │ ├── app.config.ts │ │ ├── app.routes.ts │ │ └── remote-entry │ │ │ ├── entry.component.ts │ │ │ ├── entry.routes.ts │ │ │ └── nx-welcome.component.ts │ ├── assets │ │ └── .gitkeep │ ├── bootstrap.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── styles.css │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── webpack.config.ts │ └── webpack.prod.config.ts ├── jest.config.ts ├── jest.preset.js ├── libs └── shared │ └── data-access-user │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── index.ts │ ├── lib │ │ ├── data-access-user │ │ │ ├── data-access-user.component.css │ │ │ ├── data-access-user.component.html │ │ │ ├── data-access-user.component.spec.ts │ │ │ └── data-access-user.component.ts │ │ ├── user.service.spec.ts │ │ └── user.service.ts │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nx.json ├── package.json └── tsconfig.base.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/README.md -------------------------------------------------------------------------------- /apps/dashboard-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/dashboard-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/dashboard-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard-e2e/project.json -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/dashboard-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/dashboard/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/.eslintrc.json -------------------------------------------------------------------------------- /apps/dashboard/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/jest.config.ts -------------------------------------------------------------------------------- /apps/dashboard/module-federation.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/module-federation.config.ts -------------------------------------------------------------------------------- /apps/dashboard/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/project.json -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/dashboard/src/assets/module-federation.manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "login": "http://localhost:4201" 3 | } 4 | -------------------------------------------------------------------------------- /apps/dashboard/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/src/bootstrap.ts -------------------------------------------------------------------------------- /apps/dashboard/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/src/favicon.ico -------------------------------------------------------------------------------- /apps/dashboard/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/src/index.html -------------------------------------------------------------------------------- /apps/dashboard/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/src/main.ts -------------------------------------------------------------------------------- /apps/dashboard/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/src/styles.css -------------------------------------------------------------------------------- /apps/dashboard/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/src/test-setup.ts -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/tsconfig.app.json -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/tsconfig.json -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/dashboard/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/webpack.config.ts -------------------------------------------------------------------------------- /apps/dashboard/webpack.prod.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/dashboard/webpack.prod.config.ts -------------------------------------------------------------------------------- /apps/employee-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/employee-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/employee-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee-e2e/project.json -------------------------------------------------------------------------------- /apps/employee-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/employee-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/employee-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/employee-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/employee-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/employee-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/employee/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/.eslintrc.json -------------------------------------------------------------------------------- /apps/employee/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/jest.config.ts -------------------------------------------------------------------------------- /apps/employee/module-federation.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/module-federation.config.ts -------------------------------------------------------------------------------- /apps/employee/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/project.json -------------------------------------------------------------------------------- /apps/employee/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/employee/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/src/app/app.component.html -------------------------------------------------------------------------------- /apps/employee/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/employee/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/employee/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/employee/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/employee/src/app/nx-welcome.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/src/app/nx-welcome.component.ts -------------------------------------------------------------------------------- /apps/employee/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/employee/src/assets/module-federation.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/src/assets/module-federation.manifest.json -------------------------------------------------------------------------------- /apps/employee/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/src/bootstrap.ts -------------------------------------------------------------------------------- /apps/employee/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/src/favicon.ico -------------------------------------------------------------------------------- /apps/employee/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/src/index.html -------------------------------------------------------------------------------- /apps/employee/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/src/main.ts -------------------------------------------------------------------------------- /apps/employee/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/src/styles.css -------------------------------------------------------------------------------- /apps/employee/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/src/test-setup.ts -------------------------------------------------------------------------------- /apps/employee/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/tsconfig.app.json -------------------------------------------------------------------------------- /apps/employee/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/employee/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/tsconfig.json -------------------------------------------------------------------------------- /apps/employee/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/employee/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/employee/webpack.config.ts -------------------------------------------------------------------------------- /apps/login-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/login-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/login-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login-e2e/project.json -------------------------------------------------------------------------------- /apps/login-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/login-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/login-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/login-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/login-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/login-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/login/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/.eslintrc.json -------------------------------------------------------------------------------- /apps/login/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/jest.config.ts -------------------------------------------------------------------------------- /apps/login/module-federation.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/module-federation.config.ts -------------------------------------------------------------------------------- /apps/login/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/project.json -------------------------------------------------------------------------------- /apps/login/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/login/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/login/src/app/remote-entry/entry.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/src/app/remote-entry/entry.component.ts -------------------------------------------------------------------------------- /apps/login/src/app/remote-entry/entry.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/src/app/remote-entry/entry.routes.ts -------------------------------------------------------------------------------- /apps/login/src/app/remote-entry/nx-welcome.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/src/app/remote-entry/nx-welcome.component.ts -------------------------------------------------------------------------------- /apps/login/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/login/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/src/bootstrap.ts -------------------------------------------------------------------------------- /apps/login/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/src/favicon.ico -------------------------------------------------------------------------------- /apps/login/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/src/index.html -------------------------------------------------------------------------------- /apps/login/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/src/main.ts -------------------------------------------------------------------------------- /apps/login/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/src/styles.css -------------------------------------------------------------------------------- /apps/login/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/src/test-setup.ts -------------------------------------------------------------------------------- /apps/login/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/tsconfig.app.json -------------------------------------------------------------------------------- /apps/login/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/login/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/tsconfig.json -------------------------------------------------------------------------------- /apps/login/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/login/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/webpack.config.ts -------------------------------------------------------------------------------- /apps/login/webpack.prod.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/login/webpack.prod.config.ts -------------------------------------------------------------------------------- /apps/todo-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/todo-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/todo-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo-e2e/project.json -------------------------------------------------------------------------------- /apps/todo-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/todo-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/todo-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/todo-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/todo-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/todo-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/todo/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/.eslintrc.json -------------------------------------------------------------------------------- /apps/todo/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/jest.config.ts -------------------------------------------------------------------------------- /apps/todo/module-federation.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/module-federation.config.ts -------------------------------------------------------------------------------- /apps/todo/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/project.json -------------------------------------------------------------------------------- /apps/todo/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/todo/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/todo/src/app/remote-entry/entry.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/src/app/remote-entry/entry.component.ts -------------------------------------------------------------------------------- /apps/todo/src/app/remote-entry/entry.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/src/app/remote-entry/entry.routes.ts -------------------------------------------------------------------------------- /apps/todo/src/app/remote-entry/nx-welcome.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/src/app/remote-entry/nx-welcome.component.ts -------------------------------------------------------------------------------- /apps/todo/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/todo/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/src/bootstrap.ts -------------------------------------------------------------------------------- /apps/todo/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/src/favicon.ico -------------------------------------------------------------------------------- /apps/todo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/src/index.html -------------------------------------------------------------------------------- /apps/todo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/src/main.ts -------------------------------------------------------------------------------- /apps/todo/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/src/styles.css -------------------------------------------------------------------------------- /apps/todo/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/src/test-setup.ts -------------------------------------------------------------------------------- /apps/todo/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/tsconfig.app.json -------------------------------------------------------------------------------- /apps/todo/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/todo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/tsconfig.json -------------------------------------------------------------------------------- /apps/todo/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/todo/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/webpack.config.ts -------------------------------------------------------------------------------- /apps/todo/webpack.prod.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/apps/todo/webpack.prod.config.ts -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/shared/data-access-user/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/libs/shared/data-access-user/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/data-access-user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/libs/shared/data-access-user/README.md -------------------------------------------------------------------------------- /libs/shared/data-access-user/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/libs/shared/data-access-user/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/data-access-user/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/libs/shared/data-access-user/project.json -------------------------------------------------------------------------------- /libs/shared/data-access-user/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/libs/shared/data-access-user/src/index.ts -------------------------------------------------------------------------------- /libs/shared/data-access-user/src/lib/data-access-user/data-access-user.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/data-access-user/src/lib/data-access-user/data-access-user.component.html: -------------------------------------------------------------------------------- 1 |
data-access-user works!
2 | -------------------------------------------------------------------------------- /libs/shared/data-access-user/src/lib/data-access-user/data-access-user.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/libs/shared/data-access-user/src/lib/data-access-user/data-access-user.component.spec.ts -------------------------------------------------------------------------------- /libs/shared/data-access-user/src/lib/data-access-user/data-access-user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/libs/shared/data-access-user/src/lib/data-access-user/data-access-user.component.ts -------------------------------------------------------------------------------- /libs/shared/data-access-user/src/lib/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/libs/shared/data-access-user/src/lib/user.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/data-access-user/src/lib/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/libs/shared/data-access-user/src/lib/user.service.ts -------------------------------------------------------------------------------- /libs/shared/data-access-user/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/libs/shared/data-access-user/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/data-access-user/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/libs/shared/data-access-user/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/data-access-user/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/libs/shared/data-access-user/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/data-access-user/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/libs/shared/data-access-user/tsconfig.spec.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coly010/nx-ng-dyn-fed/HEAD/tsconfig.base.json --------------------------------------------------------------------------------