├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.container.html │ ├── app.container.ts │ ├── app.module.ts │ ├── dashboard │ │ ├── dashboard.component.css │ │ ├── dashboard.component.html │ │ ├── dashboard.component.spec.ts │ │ ├── dashboard.component.ts │ │ ├── dashboard.container.html │ │ ├── dashboard.container.spec.ts │ │ └── dashboard.container.ts │ ├── hero-detail │ │ ├── hero-detail.component.css │ │ ├── hero-detail.component.html │ │ ├── hero-detail.component.ts │ │ ├── hero-detail.container.html │ │ ├── hero-detail.container.spec.ts │ │ └── hero-detail.container.ts │ ├── hero-search │ │ ├── hero-search.component.css │ │ ├── hero-search.component.html │ │ ├── hero-search.component.spec.ts │ │ ├── hero-search.component.ts │ │ ├── hero-search.container.html │ │ ├── hero-search.container.spec.ts │ │ ├── hero-search.container.ts │ │ ├── hero-search.presenter.spec.ts │ │ └── hero-search.presenter.ts │ ├── hero.service.ts │ ├── hero.ts │ ├── heroes │ │ ├── heroes.component.css │ │ ├── heroes.component.html │ │ ├── heroes.component.spec.ts │ │ ├── heroes.component.ts │ │ ├── heroes.container.html │ │ ├── heroes.container.spec.ts │ │ ├── heroes.container.ts │ │ ├── heroes.presenter.spec.ts │ │ └── heroes.presenter.ts │ ├── in-memory-data.service.ts │ ├── message.service.spec.ts │ ├── message.service.ts │ ├── messages │ │ ├── messages.component.css │ │ ├── messages.component.html │ │ ├── messages.component.spec.ts │ │ ├── messages.component.ts │ │ ├── messages.container.html │ │ ├── messages.container.spec.ts │ │ ├── messages.container.ts │ │ ├── messages.presenter.spec.ts │ │ └── messages.presenter.ts │ └── mock-heroes.ts ├── assets │ └── .gitkeep ├── browserslist ├── environments │ ├── environment-signature.ts │ ├── environment.hmr.ts │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── hmr.ts ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── test │ └── female-marvel-heroes.ts ├── tsconfig.app.json ├── tsconfig.spec.json ├── tslint.json └── wallaby-test.ts ├── tsconfig.json ├── tslint.json ├── wallaby.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: LayZeeDK 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/app.component.css -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/app.container.html -------------------------------------------------------------------------------- /src/app/app.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/app.container.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/dashboard/dashboard.component.css -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/dashboard/dashboard.container.html -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.container.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/dashboard/dashboard.container.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/dashboard/dashboard.container.ts -------------------------------------------------------------------------------- /src/app/hero-detail/hero-detail.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-detail/hero-detail.component.css -------------------------------------------------------------------------------- /src/app/hero-detail/hero-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-detail/hero-detail.component.html -------------------------------------------------------------------------------- /src/app/hero-detail/hero-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-detail/hero-detail.component.ts -------------------------------------------------------------------------------- /src/app/hero-detail/hero-detail.container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-detail/hero-detail.container.html -------------------------------------------------------------------------------- /src/app/hero-detail/hero-detail.container.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-detail/hero-detail.container.spec.ts -------------------------------------------------------------------------------- /src/app/hero-detail/hero-detail.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-detail/hero-detail.container.ts -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-search/hero-search.component.css -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-search/hero-search.component.html -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-search/hero-search.component.spec.ts -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-search/hero-search.component.ts -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-search/hero-search.container.html -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.container.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-search/hero-search.container.spec.ts -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-search/hero-search.container.ts -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.presenter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-search/hero-search.presenter.spec.ts -------------------------------------------------------------------------------- /src/app/hero-search/hero-search.presenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero-search/hero-search.presenter.ts -------------------------------------------------------------------------------- /src/app/hero.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/hero.service.ts -------------------------------------------------------------------------------- /src/app/hero.ts: -------------------------------------------------------------------------------- 1 | export class Hero { 2 | id: number; 3 | name: string; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/heroes/heroes.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/heroes/heroes.component.css -------------------------------------------------------------------------------- /src/app/heroes/heroes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/heroes/heroes.component.html -------------------------------------------------------------------------------- /src/app/heroes/heroes.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/heroes/heroes.component.spec.ts -------------------------------------------------------------------------------- /src/app/heroes/heroes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/heroes/heroes.component.ts -------------------------------------------------------------------------------- /src/app/heroes/heroes.container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/heroes/heroes.container.html -------------------------------------------------------------------------------- /src/app/heroes/heroes.container.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/heroes/heroes.container.spec.ts -------------------------------------------------------------------------------- /src/app/heroes/heroes.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/heroes/heroes.container.ts -------------------------------------------------------------------------------- /src/app/heroes/heroes.presenter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/heroes/heroes.presenter.spec.ts -------------------------------------------------------------------------------- /src/app/heroes/heroes.presenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/heroes/heroes.presenter.ts -------------------------------------------------------------------------------- /src/app/in-memory-data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/in-memory-data.service.ts -------------------------------------------------------------------------------- /src/app/message.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/message.service.spec.ts -------------------------------------------------------------------------------- /src/app/message.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/message.service.ts -------------------------------------------------------------------------------- /src/app/messages/messages.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/messages/messages.component.css -------------------------------------------------------------------------------- /src/app/messages/messages.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/messages/messages.component.html -------------------------------------------------------------------------------- /src/app/messages/messages.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/messages/messages.component.spec.ts -------------------------------------------------------------------------------- /src/app/messages/messages.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/messages/messages.component.ts -------------------------------------------------------------------------------- /src/app/messages/messages.container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/messages/messages.container.html -------------------------------------------------------------------------------- /src/app/messages/messages.container.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/messages/messages.container.spec.ts -------------------------------------------------------------------------------- /src/app/messages/messages.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/messages/messages.container.ts -------------------------------------------------------------------------------- /src/app/messages/messages.presenter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/messages/messages.presenter.spec.ts -------------------------------------------------------------------------------- /src/app/messages/messages.presenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/messages/messages.presenter.ts -------------------------------------------------------------------------------- /src/app/mock-heroes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/app/mock-heroes.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- 1 | > 0.5% 2 | last 2 versions 3 | Firefox ESR 4 | not dead 5 | IE 9-11 -------------------------------------------------------------------------------- /src/environments/environment-signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/environments/environment-signature.ts -------------------------------------------------------------------------------- /src/environments/environment.hmr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/environments/environment.hmr.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/hmr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/hmr.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/test/female-marvel-heroes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/test/female-marvel-heroes.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/tslint.json -------------------------------------------------------------------------------- /src/wallaby-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/src/wallaby-test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/tslint.json -------------------------------------------------------------------------------- /wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/wallaby.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/ngx-tour-of-heroes-mvp/HEAD/yarn.lock --------------------------------------------------------------------------------