├── .editorconfig ├── .github └── workflows │ └── azure-static-web-apps-brave-mud-09b32e310.yml ├── .gitignore ├── .vscode └── settings.json ├── .yarnrc ├── README.md ├── angular.json ├── package.json ├── projects ├── auth-lib │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── src │ │ ├── lib │ │ │ ├── auth-lib.component.css │ │ │ ├── auth-lib.component.html │ │ │ ├── auth-lib.component.spec.ts │ │ │ ├── auth-lib.component.ts │ │ │ ├── auth-lib.module.ts │ │ │ ├── auth-lib.service.spec.ts │ │ │ └── auth-lib.service.ts │ │ ├── public-api.ts │ │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── tslint.json ├── mfe1 │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── app.routes.ts │ │ │ ├── flights │ │ │ │ ├── flights-search │ │ │ │ │ ├── flights-search.component.html │ │ │ │ │ └── flights-search.component.ts │ │ │ │ ├── flights.module.ts │ │ │ │ ├── flights.routes.ts │ │ │ │ └── lazy │ │ │ │ │ ├── lazy.component.html │ │ │ │ │ └── lazy.component.ts │ │ │ └── home │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── angular.png │ │ ├── bootstrap.ts │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ ├── tslint.json │ ├── webpack.config.js │ └── webpack.prod.config.js ├── shared-lib │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── src │ │ ├── lib │ │ │ ├── other │ │ │ │ ├── other.component.css │ │ │ │ ├── other.component.html │ │ │ │ ├── other.component.spec.ts │ │ │ │ └── other.component.ts │ │ │ ├── shared-lib.component.spec.ts │ │ │ ├── shared-lib.component.ts │ │ │ ├── shared-lib.module.ts │ │ │ ├── shared-lib.service.spec.ts │ │ │ └── shared-lib.service.ts │ │ ├── public-api.ts │ │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── tslint.json └── shell │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.routes.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ └── not-found │ │ │ ├── not-found.component.css │ │ │ ├── not-found.component.html │ │ │ ├── not-found.component.spec.ts │ │ │ └── not-found.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── angular.png │ │ └── mf.manifest.json │ ├── bootstrap.ts │ ├── decl.d.ts │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ ├── tslint.json │ ├── webpack.config.js │ └── webpack.prod.config.js ├── result.png ├── tsconfig.json ├── tslint.json └── update.bat /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/azure-static-web-apps-brave-mud-09b32e310.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/.github/workflows/azure-static-web-apps-brave-mud-09b32e310.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/angular.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/package.json -------------------------------------------------------------------------------- /projects/auth-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/README.md -------------------------------------------------------------------------------- /projects/auth-lib/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/karma.conf.js -------------------------------------------------------------------------------- /projects/auth-lib/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/ng-package.json -------------------------------------------------------------------------------- /projects/auth-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/package.json -------------------------------------------------------------------------------- /projects/auth-lib/src/lib/auth-lib.component.css: -------------------------------------------------------------------------------- 1 | p { 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /projects/auth-lib/src/lib/auth-lib.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/src/lib/auth-lib.component.html -------------------------------------------------------------------------------- /projects/auth-lib/src/lib/auth-lib.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/src/lib/auth-lib.component.spec.ts -------------------------------------------------------------------------------- /projects/auth-lib/src/lib/auth-lib.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/src/lib/auth-lib.component.ts -------------------------------------------------------------------------------- /projects/auth-lib/src/lib/auth-lib.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/src/lib/auth-lib.module.ts -------------------------------------------------------------------------------- /projects/auth-lib/src/lib/auth-lib.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/src/lib/auth-lib.service.spec.ts -------------------------------------------------------------------------------- /projects/auth-lib/src/lib/auth-lib.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/src/lib/auth-lib.service.ts -------------------------------------------------------------------------------- /projects/auth-lib/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/src/public-api.ts -------------------------------------------------------------------------------- /projects/auth-lib/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/src/test.ts -------------------------------------------------------------------------------- /projects/auth-lib/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/auth-lib/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/auth-lib/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/auth-lib/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/auth-lib/tslint.json -------------------------------------------------------------------------------- /projects/mfe1/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/e2e/protractor.conf.js -------------------------------------------------------------------------------- /projects/mfe1/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /projects/mfe1/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/e2e/src/app.po.ts -------------------------------------------------------------------------------- /projects/mfe1/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/e2e/tsconfig.json -------------------------------------------------------------------------------- /projects/mfe1/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/karma.conf.js -------------------------------------------------------------------------------- /projects/mfe1/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/mfe1/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/app/app.component.html -------------------------------------------------------------------------------- /projects/mfe1/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /projects/mfe1/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/mfe1/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/app/app.module.ts -------------------------------------------------------------------------------- /projects/mfe1/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/app/app.routes.ts -------------------------------------------------------------------------------- /projects/mfe1/src/app/flights/flights-search/flights-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/app/flights/flights-search/flights-search.component.html -------------------------------------------------------------------------------- /projects/mfe1/src/app/flights/flights-search/flights-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/app/flights/flights-search/flights-search.component.ts -------------------------------------------------------------------------------- /projects/mfe1/src/app/flights/flights.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/app/flights/flights.module.ts -------------------------------------------------------------------------------- /projects/mfe1/src/app/flights/flights.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/app/flights/flights.routes.ts -------------------------------------------------------------------------------- /projects/mfe1/src/app/flights/lazy/lazy.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/app/flights/lazy/lazy.component.html -------------------------------------------------------------------------------- /projects/mfe1/src/app/flights/lazy/lazy.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/app/flights/lazy/lazy.component.ts -------------------------------------------------------------------------------- /projects/mfe1/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/app/home/home.component.html -------------------------------------------------------------------------------- /projects/mfe1/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/app/home/home.component.ts -------------------------------------------------------------------------------- /projects/mfe1/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/mfe1/src/assets/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/assets/angular.png -------------------------------------------------------------------------------- /projects/mfe1/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/bootstrap.ts -------------------------------------------------------------------------------- /projects/mfe1/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /projects/mfe1/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/environments/environment.ts -------------------------------------------------------------------------------- /projects/mfe1/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/favicon.ico -------------------------------------------------------------------------------- /projects/mfe1/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/index.html -------------------------------------------------------------------------------- /projects/mfe1/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/main.ts -------------------------------------------------------------------------------- /projects/mfe1/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/polyfills.ts -------------------------------------------------------------------------------- /projects/mfe1/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/styles.css -------------------------------------------------------------------------------- /projects/mfe1/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/src/test.ts -------------------------------------------------------------------------------- /projects/mfe1/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/tsconfig.app.json -------------------------------------------------------------------------------- /projects/mfe1/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/mfe1/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/tslint.json -------------------------------------------------------------------------------- /projects/mfe1/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/mfe1/webpack.config.js -------------------------------------------------------------------------------- /projects/mfe1/webpack.prod.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./webpack.config'); 2 | -------------------------------------------------------------------------------- /projects/shared-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/README.md -------------------------------------------------------------------------------- /projects/shared-lib/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/karma.conf.js -------------------------------------------------------------------------------- /projects/shared-lib/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/ng-package.json -------------------------------------------------------------------------------- /projects/shared-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/package.json -------------------------------------------------------------------------------- /projects/shared-lib/src/lib/other/other.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shared-lib/src/lib/other/other.component.html: -------------------------------------------------------------------------------- 1 |

USer: {{user}}

2 | -------------------------------------------------------------------------------- /projects/shared-lib/src/lib/other/other.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/src/lib/other/other.component.spec.ts -------------------------------------------------------------------------------- /projects/shared-lib/src/lib/other/other.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/src/lib/other/other.component.ts -------------------------------------------------------------------------------- /projects/shared-lib/src/lib/shared-lib.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/src/lib/shared-lib.component.spec.ts -------------------------------------------------------------------------------- /projects/shared-lib/src/lib/shared-lib.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/src/lib/shared-lib.component.ts -------------------------------------------------------------------------------- /projects/shared-lib/src/lib/shared-lib.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/src/lib/shared-lib.module.ts -------------------------------------------------------------------------------- /projects/shared-lib/src/lib/shared-lib.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/src/lib/shared-lib.service.spec.ts -------------------------------------------------------------------------------- /projects/shared-lib/src/lib/shared-lib.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/src/lib/shared-lib.service.ts -------------------------------------------------------------------------------- /projects/shared-lib/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/src/public-api.ts -------------------------------------------------------------------------------- /projects/shared-lib/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/src/test.ts -------------------------------------------------------------------------------- /projects/shared-lib/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/shared-lib/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/shared-lib/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/shared-lib/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shared-lib/tslint.json -------------------------------------------------------------------------------- /projects/shell/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/e2e/protractor.conf.js -------------------------------------------------------------------------------- /projects/shell/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /projects/shell/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/e2e/src/app.po.ts -------------------------------------------------------------------------------- /projects/shell/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/e2e/tsconfig.json -------------------------------------------------------------------------------- /projects/shell/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/karma.conf.js -------------------------------------------------------------------------------- /projects/shell/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | 2 | /* Hallo */ 3 | 4 | .x { } -------------------------------------------------------------------------------- /projects/shell/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/app/app.component.html -------------------------------------------------------------------------------- /projects/shell/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /projects/shell/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/shell/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/app/app.module.ts -------------------------------------------------------------------------------- /projects/shell/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/app/app.routes.ts -------------------------------------------------------------------------------- /projects/shell/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shell/src/app/home/home.component.html: -------------------------------------------------------------------------------- 1 |

Welcome!

-------------------------------------------------------------------------------- /projects/shell/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /projects/shell/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/app/home/home.component.ts -------------------------------------------------------------------------------- /projects/shell/src/app/not-found/not-found.component.css: -------------------------------------------------------------------------------- 1 | p { 2 | font-size: 18px; 3 | } -------------------------------------------------------------------------------- /projects/shell/src/app/not-found/not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/app/not-found/not-found.component.html -------------------------------------------------------------------------------- /projects/shell/src/app/not-found/not-found.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/app/not-found/not-found.component.spec.ts -------------------------------------------------------------------------------- /projects/shell/src/app/not-found/not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/app/not-found/not-found.component.ts -------------------------------------------------------------------------------- /projects/shell/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shell/src/assets/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/assets/angular.png -------------------------------------------------------------------------------- /projects/shell/src/assets/mf.manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "mfe1": "http://localhost:3000/remoteEntry.js" 3 | } -------------------------------------------------------------------------------- /projects/shell/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/bootstrap.ts -------------------------------------------------------------------------------- /projects/shell/src/decl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/decl.d.ts -------------------------------------------------------------------------------- /projects/shell/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /projects/shell/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/environments/environment.ts -------------------------------------------------------------------------------- /projects/shell/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/favicon.ico -------------------------------------------------------------------------------- /projects/shell/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/index.html -------------------------------------------------------------------------------- /projects/shell/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/main.ts -------------------------------------------------------------------------------- /projects/shell/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/polyfills.ts -------------------------------------------------------------------------------- /projects/shell/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/styles.css -------------------------------------------------------------------------------- /projects/shell/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/src/test.ts -------------------------------------------------------------------------------- /projects/shell/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/tsconfig.app.json -------------------------------------------------------------------------------- /projects/shell/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/shell/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/tslint.json -------------------------------------------------------------------------------- /projects/shell/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/projects/shell/webpack.config.js -------------------------------------------------------------------------------- /projects/shell/webpack.prod.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./webpack.config'); 2 | -------------------------------------------------------------------------------- /result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/result.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/tslint.json -------------------------------------------------------------------------------- /update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/module-federation-plugin-example/HEAD/update.bat --------------------------------------------------------------------------------