├── .editorconfig ├── .gitignore ├── .npmignore ├── README.md ├── _config.yml ├── appveyor.yml ├── circle.yml ├── package.json ├── src ├── custom-typings.d.ts ├── index.ts └── lib │ ├── app.module.ts │ ├── app.pipe.ts │ ├── app.service.ts │ ├── component │ └── app.component.ts │ └── index.ts ├── tsconfig.json ├── typings.d.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/_config.yml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/appveyor.yml -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/circle.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/custom-typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/src/custom-typings.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib'; -------------------------------------------------------------------------------- /src/lib/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/src/lib/app.module.ts -------------------------------------------------------------------------------- /src/lib/app.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/src/lib/app.pipe.ts -------------------------------------------------------------------------------- /src/lib/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/src/lib/app.service.ts -------------------------------------------------------------------------------- /src/lib/component/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/src/lib/component/app.component.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/typings.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-library-starter/HEAD/yarn.lock --------------------------------------------------------------------------------