├── .editorconfig ├── .gitignore ├── .npmignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── angular.json ├── package.json ├── preview.png ├── projects ├── made-with-love │ ├── karma.conf.js │ ├── ng-package.json │ ├── ng-package.prod.json │ ├── package.json │ ├── src │ │ ├── lib │ │ │ ├── made-with-love.component.html │ │ │ ├── made-with-love.component.scss │ │ │ ├── made-with-love.component.ts │ │ │ └── made-with-love.module.ts │ │ ├── public_api.ts │ │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json └── schematics │ ├── package.json │ ├── src │ ├── collection.json │ └── ng-add │ │ ├── index.ts │ │ └── schema.ts │ └── tsconfig.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ └── app.module.ts ├── assets │ └── .gitkeep ├── browserslist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json ├── tslint.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/angular.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/package.json -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/preview.png -------------------------------------------------------------------------------- /projects/made-with-love/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/made-with-love/karma.conf.js -------------------------------------------------------------------------------- /projects/made-with-love/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/made-with-love/ng-package.json -------------------------------------------------------------------------------- /projects/made-with-love/ng-package.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/made-with-love/ng-package.prod.json -------------------------------------------------------------------------------- /projects/made-with-love/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/made-with-love/package.json -------------------------------------------------------------------------------- /projects/made-with-love/src/lib/made-with-love.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/made-with-love/src/lib/made-with-love.component.html -------------------------------------------------------------------------------- /projects/made-with-love/src/lib/made-with-love.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/made-with-love/src/lib/made-with-love.component.scss -------------------------------------------------------------------------------- /projects/made-with-love/src/lib/made-with-love.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/made-with-love/src/lib/made-with-love.component.ts -------------------------------------------------------------------------------- /projects/made-with-love/src/lib/made-with-love.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/made-with-love/src/lib/made-with-love.module.ts -------------------------------------------------------------------------------- /projects/made-with-love/src/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/made-with-love/src/public_api.ts -------------------------------------------------------------------------------- /projects/made-with-love/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/made-with-love/src/test.ts -------------------------------------------------------------------------------- /projects/made-with-love/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/made-with-love/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/made-with-love/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/made-with-love/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/made-with-love/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tslint.json" 3 | } 4 | -------------------------------------------------------------------------------- /projects/schematics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/schematics/package.json -------------------------------------------------------------------------------- /projects/schematics/src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/schematics/src/collection.json -------------------------------------------------------------------------------- /projects/schematics/src/ng-add/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/schematics/src/ng-add/index.ts -------------------------------------------------------------------------------- /projects/schematics/src/ng-add/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/schematics/src/ng-add/schema.ts -------------------------------------------------------------------------------- /projects/schematics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/projects/schematics/tsconfig.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/src/app/app.module.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.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css?family=Lato'); 2 | -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/made-with-love/HEAD/webpack.config.js --------------------------------------------------------------------------------