├── .github └── HOW_TO_PUBLISH_README.md ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── screen-shots └── ios │ └── home-page.png ├── src ├── README.md ├── application │ ├── files │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __dot__angular-cli.json │ │ ├── __dot__editorconfig │ │ ├── __dot__gitignore │ │ ├── __sourcedir__ │ │ │ ├── assets │ │ │ │ ├── __dot__gitkeep │ │ │ │ ├── icon │ │ │ │ │ └── favicon.ico │ │ │ │ └── imgs │ │ │ │ │ └── logo.png │ │ │ ├── environments │ │ │ │ ├── env.ts │ │ │ │ ├── environment.dev.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ ├── ngsw-config.json │ │ │ ├── service-worker.js │ │ │ ├── test.ts │ │ │ ├── theme │ │ │ │ ├── facebook-messenger-theme.scss │ │ │ │ ├── gradient-mixins.scss │ │ │ │ ├── gradients.scss │ │ │ │ ├── green-and-blue-theme.scss │ │ │ │ └── variables.scss │ │ │ ├── tsconfig.app.json │ │ │ ├── tsconfig.spec.json │ │ │ └── typings.d.ts │ │ ├── config.xml │ │ ├── config │ │ │ └── webpack.config.js │ │ ├── e2e │ │ │ ├── app.e2e-spec.ts │ │ │ ├── app.po.ts │ │ │ └── tsconfig.e2e.json │ │ ├── ionic.config.json │ │ ├── karma.conf.js │ │ ├── package.json │ │ ├── protractor.conf.js │ │ ├── resources │ │ │ ├── README.md │ │ │ ├── android │ │ │ │ ├── icon │ │ │ │ │ ├── drawable-hdpi-icon.png │ │ │ │ │ ├── drawable-ldpi-icon.png │ │ │ │ │ ├── drawable-mdpi-icon.png │ │ │ │ │ ├── drawable-xhdpi-icon.png │ │ │ │ │ ├── drawable-xxhdpi-icon.png │ │ │ │ │ └── drawable-xxxhdpi-icon.png │ │ │ │ └── splash │ │ │ │ │ ├── drawable-land-hdpi-screen.png │ │ │ │ │ ├── drawable-land-ldpi-screen.png │ │ │ │ │ ├── drawable-land-mdpi-screen.png │ │ │ │ │ ├── drawable-land-xhdpi-screen.png │ │ │ │ │ ├── drawable-land-xxhdpi-screen.png │ │ │ │ │ ├── drawable-land-xxxhdpi-screen.png │ │ │ │ │ ├── drawable-port-hdpi-screen.png │ │ │ │ │ ├── drawable-port-ldpi-screen.png │ │ │ │ │ ├── drawable-port-mdpi-screen.png │ │ │ │ │ ├── drawable-port-xhdpi-screen.png │ │ │ │ │ ├── drawable-port-xxhdpi-screen.png │ │ │ │ │ └── drawable-port-xxxhdpi-screen.png │ │ │ ├── icon.png │ │ │ ├── ios │ │ │ │ ├── icon │ │ │ │ │ ├── icon-1024.png │ │ │ │ │ ├── icon-40.png │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ ├── icon-50.png │ │ │ │ │ ├── icon-50@2x.png │ │ │ │ │ ├── icon-60.png │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ ├── icon-72.png │ │ │ │ │ ├── icon-72@2x.png │ │ │ │ │ ├── icon-76.png │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ ├── icon-83.5@2x.png │ │ │ │ │ ├── icon-small.png │ │ │ │ │ ├── icon-small@2x.png │ │ │ │ │ ├── icon-small@3x.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── icon@2x.png │ │ │ │ └── splash │ │ │ │ │ ├── Default-568h@2x~iphone.png │ │ │ │ │ ├── Default-667h.png │ │ │ │ │ ├── Default-736h.png │ │ │ │ │ ├── Default-Landscape-736h.png │ │ │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ │ │ ├── Default-Landscape@~ipadpro.png │ │ │ │ │ ├── Default-Landscape~ipad.png │ │ │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ │ │ ├── Default-Portrait@~ipadpro.png │ │ │ │ │ ├── Default-Portrait~ipad.png │ │ │ │ │ ├── Default@2x~iphone.png │ │ │ │ │ ├── Default@2x~universal~anyany.png │ │ │ │ │ └── Default~iphone.png │ │ │ └── splash.png │ │ ├── tsconfig.json │ │ ├── tsconfig.ng-cli.json │ │ └── tslint.json │ ├── index.d.ts │ ├── index.js │ ├── other-files │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.scss │ │ ├── core │ │ │ ├── core.module.ts │ │ │ ├── logger │ │ │ │ ├── console-logger.service.ts │ │ │ │ ├── logger.service.ts │ │ │ │ └── logger.ts │ │ │ └── module-import-guard.ts │ │ ├── main.ts │ │ ├── pages │ │ │ └── home │ │ │ │ ├── home.page.html │ │ │ │ ├── home.page.module.ts │ │ │ │ ├── home.page.scss │ │ │ │ ├── home.page.spec.ts │ │ │ │ └── home.page.ts │ │ └── shared │ │ │ └── shared.module.ts │ ├── schema.d.ts │ └── schema.json ├── class │ ├── files │ │ └── __path__ │ │ │ ├── __name@dasherize____type__.spec.ts │ │ │ └── __name@dasherize____type__.ts │ ├── index.d.ts │ ├── index.js │ ├── schema.d.ts │ └── schema.json ├── collection.json ├── component │ ├── files │ │ └── __path__ │ │ │ └── __name@dasherize@if-flat__ │ │ │ ├── __name@dasherize__.component.__styleext__ │ │ │ ├── __name@dasherize__.component.html │ │ │ ├── __name@dasherize__.component.spec.ts │ │ │ └── __name@dasherize__.component.ts │ ├── index.d.ts │ ├── index.js │ ├── schema.d.ts │ └── schema.json ├── directive │ ├── files │ │ └── __path__ │ │ │ └── __name@dasherize@if-flat__ │ │ │ ├── __name@dasherize__.directive.spec.ts │ │ │ └── __name@dasherize__.directive.ts │ ├── index.d.ts │ ├── index.js │ ├── schema.d.ts │ └── schema.json ├── interface │ ├── files │ │ └── __path__ │ │ │ └── __name@dasherize____type__.ts │ ├── index.d.ts │ ├── index.js │ ├── schema.d.ts │ └── schema.json ├── module │ ├── files │ │ └── __path__ │ │ │ └── __name@dasherize@if-flat__ │ │ │ ├── __name@dasherize__.module.spec.ts │ │ │ └── __name@dasherize__.module.ts │ ├── index.d.ts │ ├── index.js │ ├── schema.d.ts │ └── schema.json ├── package.json ├── page │ ├── files │ │ └── __path__ │ │ │ └── __name@dasherize@if-flat__ │ │ │ ├── __name@dasherize__.page.__styleext__ │ │ │ ├── __name@dasherize__.page.html │ │ │ ├── __name@dasherize__.page.module.ts │ │ │ ├── __name@dasherize__.page.spec.ts │ │ │ └── __name@dasherize__.page.ts │ ├── index.d.ts │ ├── index.js │ ├── schema.d.ts │ └── schema.json ├── pipe │ ├── files │ │ └── __path__ │ │ │ └── __name@dasherize@if-flat__ │ │ │ ├── __name@dasherize__.pipe.spec.ts │ │ │ └── __name@dasherize__.pipe.ts │ ├── index.d.ts │ ├── index.js │ ├── schema.d.ts │ └── schema.json ├── service │ ├── files │ │ └── __path__ │ │ │ └── __name@dasherize@if-flat__ │ │ │ ├── __name@dasherize__.service.spec.ts │ │ │ └── __name@dasherize__.service.ts │ ├── index.d.ts │ ├── index.js │ ├── schema.d.ts │ └── schema.json ├── strings.d.ts ├── strings.js └── utility │ ├── ast-utils.d.ts │ ├── ast-utils.js │ ├── change.d.ts │ ├── change.js │ ├── config.d.ts │ ├── config.js │ ├── find-module.d.ts │ ├── find-module.js │ ├── ng-ast-utils.d.ts │ ├── ng-ast-utils.js │ ├── route-utils.d.ts │ ├── route-utils.js │ └── test │ ├── create-app-module.d.ts │ ├── create-app-module.js │ ├── get-file-content.d.ts │ ├── get-file-content.js │ ├── index.d.ts │ └── index.js ├── tsconfig.json └── tslint.json /.github/HOW_TO_PUBLISH_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/.github/HOW_TO_PUBLISH_README.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/package.json -------------------------------------------------------------------------------- /screen-shots/ios/home-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/screen-shots/ios/home-page.png -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/README.md -------------------------------------------------------------------------------- /src/application/files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/LICENSE -------------------------------------------------------------------------------- /src/application/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/README.md -------------------------------------------------------------------------------- /src/application/files/__dot__angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__dot__angular-cli.json -------------------------------------------------------------------------------- /src/application/files/__dot__editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__dot__editorconfig -------------------------------------------------------------------------------- /src/application/files/__dot__gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__dot__gitignore -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/assets/__dot__gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/assets/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/assets/imgs/logo.png -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/environments/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/environments/env.ts -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/environments/environment.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/environments/environment.dev.ts -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/environments/environment.ts -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/favicon.ico -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/index.html -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/manifest.json -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/ngsw-config.json -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/service-worker.js -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/test.ts -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/theme/facebook-messenger-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/theme/facebook-messenger-theme.scss -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/theme/gradient-mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/theme/gradient-mixins.scss -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/theme/gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/theme/gradients.scss -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/theme/green-and-blue-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/theme/green-and-blue-theme.scss -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/theme/variables.scss -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/tsconfig.app.json -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/tsconfig.spec.json -------------------------------------------------------------------------------- /src/application/files/__sourcedir__/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/__sourcedir__/typings.d.ts -------------------------------------------------------------------------------- /src/application/files/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/config.xml -------------------------------------------------------------------------------- /src/application/files/config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/config/webpack.config.js -------------------------------------------------------------------------------- /src/application/files/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /src/application/files/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/e2e/app.po.ts -------------------------------------------------------------------------------- /src/application/files/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /src/application/files/ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/ionic.config.json -------------------------------------------------------------------------------- /src/application/files/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/karma.conf.js -------------------------------------------------------------------------------- /src/application/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/package.json -------------------------------------------------------------------------------- /src/application/files/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/protractor.conf.js -------------------------------------------------------------------------------- /src/application/files/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/README.md -------------------------------------------------------------------------------- /src/application/files/resources/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /src/application/files/resources/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /src/application/files/resources/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /src/application/files/resources/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /src/application/files/resources/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /src/application/files/resources/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /src/application/files/resources/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /src/application/files/resources/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /src/application/files/resources/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /src/application/files/resources/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /src/application/files/resources/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /src/application/files/resources/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /src/application/files/resources/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /src/application/files/resources/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /src/application/files/resources/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /src/application/files/resources/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /src/application/files/resources/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /src/application/files/resources/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /src/application/files/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/icon.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-1024.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-40@3x.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-83.5@2x.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-small.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/splash/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/splash/Default-667h.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/splash/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/splash/Default-736h.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/splash/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/splash/Default-Landscape-736h.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/splash/Default-Landscape@~ipadpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/splash/Default-Landscape@~ipadpro.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/splash/Default-Portrait@~ipadpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/splash/Default-Portrait@~ipadpro.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/splash/Default@2x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/splash/Default@2x~universal~anyany.png -------------------------------------------------------------------------------- /src/application/files/resources/ios/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/ios/splash/Default~iphone.png -------------------------------------------------------------------------------- /src/application/files/resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/resources/splash.png -------------------------------------------------------------------------------- /src/application/files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/tsconfig.json -------------------------------------------------------------------------------- /src/application/files/tsconfig.ng-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/tsconfig.ng-cli.json -------------------------------------------------------------------------------- /src/application/files/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/files/tslint.json -------------------------------------------------------------------------------- /src/application/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/index.d.ts -------------------------------------------------------------------------------- /src/application/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/index.js -------------------------------------------------------------------------------- /src/application/other-files/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/app.component.html -------------------------------------------------------------------------------- /src/application/other-files/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/app.component.spec.ts -------------------------------------------------------------------------------- /src/application/other-files/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/app.component.ts -------------------------------------------------------------------------------- /src/application/other-files/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/app.module.ts -------------------------------------------------------------------------------- /src/application/other-files/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/app.scss -------------------------------------------------------------------------------- /src/application/other-files/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/core/core.module.ts -------------------------------------------------------------------------------- /src/application/other-files/core/logger/console-logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/core/logger/console-logger.service.ts -------------------------------------------------------------------------------- /src/application/other-files/core/logger/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/core/logger/logger.service.ts -------------------------------------------------------------------------------- /src/application/other-files/core/logger/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/core/logger/logger.ts -------------------------------------------------------------------------------- /src/application/other-files/core/module-import-guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/core/module-import-guard.ts -------------------------------------------------------------------------------- /src/application/other-files/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/main.ts -------------------------------------------------------------------------------- /src/application/other-files/pages/home/home.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/pages/home/home.page.html -------------------------------------------------------------------------------- /src/application/other-files/pages/home/home.page.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/pages/home/home.page.module.ts -------------------------------------------------------------------------------- /src/application/other-files/pages/home/home.page.scss: -------------------------------------------------------------------------------- 1 | page-home { 2 | 3 | } -------------------------------------------------------------------------------- /src/application/other-files/pages/home/home.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/pages/home/home.page.spec.ts -------------------------------------------------------------------------------- /src/application/other-files/pages/home/home.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/pages/home/home.page.ts -------------------------------------------------------------------------------- /src/application/other-files/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/other-files/shared/shared.module.ts -------------------------------------------------------------------------------- /src/application/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/schema.d.ts -------------------------------------------------------------------------------- /src/application/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/application/schema.json -------------------------------------------------------------------------------- /src/class/files/__path__/__name@dasherize____type__.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/class/files/__path__/__name@dasherize____type__.spec.ts -------------------------------------------------------------------------------- /src/class/files/__path__/__name@dasherize____type__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/class/files/__path__/__name@dasherize____type__.ts -------------------------------------------------------------------------------- /src/class/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/class/index.d.ts -------------------------------------------------------------------------------- /src/class/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/class/index.js -------------------------------------------------------------------------------- /src/class/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/class/schema.d.ts -------------------------------------------------------------------------------- /src/class/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/class/schema.json -------------------------------------------------------------------------------- /src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/collection.json -------------------------------------------------------------------------------- /src/component/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.__styleext__: -------------------------------------------------------------------------------- 1 | <%= selector %> { 2 | 3 | } -------------------------------------------------------------------------------- /src/component/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/component/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html -------------------------------------------------------------------------------- /src/component/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/component/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.spec.ts -------------------------------------------------------------------------------- /src/component/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/component/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.ts -------------------------------------------------------------------------------- /src/component/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/component/index.d.ts -------------------------------------------------------------------------------- /src/component/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/component/index.js -------------------------------------------------------------------------------- /src/component/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/component/schema.d.ts -------------------------------------------------------------------------------- /src/component/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/component/schema.json -------------------------------------------------------------------------------- /src/directive/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/directive/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.directive.spec.ts -------------------------------------------------------------------------------- /src/directive/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/directive/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.directive.ts -------------------------------------------------------------------------------- /src/directive/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/directive/index.d.ts -------------------------------------------------------------------------------- /src/directive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/directive/index.js -------------------------------------------------------------------------------- /src/directive/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/directive/schema.d.ts -------------------------------------------------------------------------------- /src/directive/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/directive/schema.json -------------------------------------------------------------------------------- /src/interface/files/__path__/__name@dasherize____type__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/interface/files/__path__/__name@dasherize____type__.ts -------------------------------------------------------------------------------- /src/interface/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/interface/index.d.ts -------------------------------------------------------------------------------- /src/interface/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/interface/index.js -------------------------------------------------------------------------------- /src/interface/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/interface/schema.d.ts -------------------------------------------------------------------------------- /src/interface/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/interface/schema.json -------------------------------------------------------------------------------- /src/module/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/module/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.module.spec.ts -------------------------------------------------------------------------------- /src/module/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/module/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.module.ts -------------------------------------------------------------------------------- /src/module/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/module/index.d.ts -------------------------------------------------------------------------------- /src/module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/module/index.js -------------------------------------------------------------------------------- /src/module/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/module/schema.d.ts -------------------------------------------------------------------------------- /src/module/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/module/schema.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/package.json -------------------------------------------------------------------------------- /src/page/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.page.__styleext__: -------------------------------------------------------------------------------- 1 | <%= selector %> { 2 | 3 | } -------------------------------------------------------------------------------- /src/page/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/page/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.page.html -------------------------------------------------------------------------------- /src/page/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.page.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/page/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.page.module.ts -------------------------------------------------------------------------------- /src/page/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/page/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.page.spec.ts -------------------------------------------------------------------------------- /src/page/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/page/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.page.ts -------------------------------------------------------------------------------- /src/page/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/page/index.d.ts -------------------------------------------------------------------------------- /src/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/page/index.js -------------------------------------------------------------------------------- /src/page/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/page/schema.d.ts -------------------------------------------------------------------------------- /src/page/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/page/schema.json -------------------------------------------------------------------------------- /src/pipe/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/pipe/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.pipe.spec.ts -------------------------------------------------------------------------------- /src/pipe/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/pipe/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.pipe.ts -------------------------------------------------------------------------------- /src/pipe/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/pipe/index.d.ts -------------------------------------------------------------------------------- /src/pipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/pipe/index.js -------------------------------------------------------------------------------- /src/pipe/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/pipe/schema.d.ts -------------------------------------------------------------------------------- /src/pipe/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/pipe/schema.json -------------------------------------------------------------------------------- /src/service/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/service/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.service.spec.ts -------------------------------------------------------------------------------- /src/service/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/service/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.service.ts -------------------------------------------------------------------------------- /src/service/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/service/index.d.ts -------------------------------------------------------------------------------- /src/service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/service/index.js -------------------------------------------------------------------------------- /src/service/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/service/schema.d.ts -------------------------------------------------------------------------------- /src/service/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/service/schema.json -------------------------------------------------------------------------------- /src/strings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/strings.d.ts -------------------------------------------------------------------------------- /src/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/strings.js -------------------------------------------------------------------------------- /src/utility/ast-utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/ast-utils.d.ts -------------------------------------------------------------------------------- /src/utility/ast-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/ast-utils.js -------------------------------------------------------------------------------- /src/utility/change.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/change.d.ts -------------------------------------------------------------------------------- /src/utility/change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/change.js -------------------------------------------------------------------------------- /src/utility/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/config.d.ts -------------------------------------------------------------------------------- /src/utility/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/config.js -------------------------------------------------------------------------------- /src/utility/find-module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/find-module.d.ts -------------------------------------------------------------------------------- /src/utility/find-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/find-module.js -------------------------------------------------------------------------------- /src/utility/ng-ast-utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/ng-ast-utils.d.ts -------------------------------------------------------------------------------- /src/utility/ng-ast-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/ng-ast-utils.js -------------------------------------------------------------------------------- /src/utility/route-utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/route-utils.d.ts -------------------------------------------------------------------------------- /src/utility/route-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/route-utils.js -------------------------------------------------------------------------------- /src/utility/test/create-app-module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/test/create-app-module.d.ts -------------------------------------------------------------------------------- /src/utility/test/create-app-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/test/create-app-module.js -------------------------------------------------------------------------------- /src/utility/test/get-file-content.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/test/get-file-content.d.ts -------------------------------------------------------------------------------- /src/utility/test/get-file-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/test/get-file-content.js -------------------------------------------------------------------------------- /src/utility/test/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/test/index.d.ts -------------------------------------------------------------------------------- /src/utility/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/src/utility/test/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robinyo/ionic-angular-schematics/HEAD/tslint.json --------------------------------------------------------------------------------