├── .editorconfig ├── .eslintrc.json ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .releaserc ├── LICENSE.md ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── package.json ├── prettier.config.js ├── projects └── ngx-favicon │ ├── .eslintrc.json │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── ngx-favicon.interface.ts │ │ ├── ngx-favicon.module.ts │ │ ├── ngx-favicon.service.ts │ │ └── ngx-favicon.tokens.ts │ ├── public_api.ts │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── favicon.config.ts │ └── helpers │ │ └── testing.helpers.ts ├── assets │ └── .gitkeep ├── browserslist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon-error.ico ├── favicon-success.ico ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v14.17.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | dist 3 | node_modules 4 | .history 5 | .angular 6 | -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- 1 | { 2 | "pkgRoot": "dist/ngx-favicon" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/prettier.config.js -------------------------------------------------------------------------------- /projects/ngx-favicon/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/.eslintrc.json -------------------------------------------------------------------------------- /projects/ngx-favicon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/README.md -------------------------------------------------------------------------------- /projects/ngx-favicon/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/karma.conf.js -------------------------------------------------------------------------------- /projects/ngx-favicon/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/ng-package.json -------------------------------------------------------------------------------- /projects/ngx-favicon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/package.json -------------------------------------------------------------------------------- /projects/ngx-favicon/src/lib/ngx-favicon.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/src/lib/ngx-favicon.interface.ts -------------------------------------------------------------------------------- /projects/ngx-favicon/src/lib/ngx-favicon.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/src/lib/ngx-favicon.module.ts -------------------------------------------------------------------------------- /projects/ngx-favicon/src/lib/ngx-favicon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/src/lib/ngx-favicon.service.ts -------------------------------------------------------------------------------- /projects/ngx-favicon/src/lib/ngx-favicon.tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/src/lib/ngx-favicon.tokens.ts -------------------------------------------------------------------------------- /projects/ngx-favicon/src/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/src/public_api.ts -------------------------------------------------------------------------------- /projects/ngx-favicon/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/src/test.ts -------------------------------------------------------------------------------- /projects/ngx-favicon/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/ngx-favicon/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/ngx-favicon/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/projects/ngx-favicon/tsconfig.spec.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | input { 2 | width: 400px; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/favicon.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/app/favicon.config.ts -------------------------------------------------------------------------------- /src/app/helpers/testing.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/app/helpers/testing.helpers.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/browserslist -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon-error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/favicon-error.ico -------------------------------------------------------------------------------- /src/favicon-success.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/favicon-success.ico -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnc/ngx-favicon/HEAD/yarn.lock --------------------------------------------------------------------------------