├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode ├── launch.json └── tasks.json ├── CHANGELOG.md ├── CI_JOBS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── adding-angular-CLI-to-NativeScript.md ├── jasmine-config ├── jasmine.json └── reporter.ts ├── package.json ├── src ├── add-ns │ ├── _ns-files │ │ ├── __sourceDir__ │ │ │ ├── app.css │ │ │ ├── app │ │ │ │ ├── __entryComponentName@dasherize__.component__nsext__.html │ │ │ │ ├── __entryComponentName@dasherize__.component__nsext__.ts │ │ │ │ ├── __entryModuleName@dasherize__.module__nsext__.ts │ │ │ │ └── app-routing.module__nsext__.ts │ │ │ └── main__nsext__.ts │ │ ├── nativescript.config.ts │ │ └── tsconfig__nsext__.json │ ├── _sample-files │ │ └── barcelona │ │ │ ├── barcelona.common.ts │ │ │ ├── barcelona.module__nsext__.ts │ │ │ ├── barcelona.module__webext__.ts │ │ │ ├── player-detail │ │ │ ├── player-detail.component.ts │ │ │ ├── player-detail.component__nsext__.html │ │ │ └── player-detail.component__webext__.html │ │ │ ├── player.model.ts │ │ │ ├── player.service.ts │ │ │ └── players │ │ │ ├── players.component.ts │ │ │ ├── players.component__nsext__.html │ │ │ └── players.component__webext__.html │ ├── index.ts │ ├── index_spec.ts │ ├── schema.d.ts │ └── schema.json ├── angular-json │ ├── _files │ │ └── angular.json │ ├── index.ts │ ├── index_spec.ts │ ├── schema.d.ts │ └── schema.json ├── angular-project-parser.ts ├── app-resources │ ├── _files │ │ └── __name__ │ │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── app.gradle │ │ │ ├── drawable-hdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-ldpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ ├── drawable-xhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ ├── values-v29 │ │ │ │ └── styles.xml │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ └── iOS │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-1024.png │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-1125h.png │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667h@2x.png │ │ │ │ ├── Default-736h@3x.png │ │ │ │ ├── Default-Landscape-X.png │ │ │ │ ├── Default-Landscape.png │ │ │ │ ├── Default-Landscape@2x.png │ │ │ │ ├── Default-Landscape@3x.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ └── LaunchScreen-AspectFill@2x.png │ │ │ └── LaunchScreen.Center.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ └── LaunchScreen-Center@2x.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── build.xcconfig │ ├── index.ts │ ├── schema.d.ts │ └── schema.json ├── collection.json ├── convert-relative-imports │ ├── index.ts │ ├── index_spec.ts │ ├── schema.d.ts │ └── schema.json ├── decorator-utils.ts ├── generate-template │ └── master-detail │ │ ├── _files-nsonly │ │ └── __name__ │ │ │ ├── __detail__-detail │ │ │ ├── __detail__-detail.component.html │ │ │ └── __detail__-detail.component.ts │ │ │ ├── __master__.module.ts │ │ │ ├── __master__ │ │ │ ├── __master__.component.html │ │ │ └── __master__.component.ts │ │ │ └── data.service.ts │ │ ├── _files-shared │ │ └── __name__ │ │ │ ├── __detail__-detail │ │ │ ├── __detail__-detail.component.html │ │ │ ├── __detail__-detail.component.ts │ │ │ └── __detail__-detail.component__nsext__.html │ │ │ ├── __master__.common.ts │ │ │ ├── __master__.module.ts │ │ │ ├── __master__.module__nsext__.ts │ │ │ ├── __master__ │ │ │ ├── __master__.component.html │ │ │ ├── __master__.component.ts │ │ │ └── __master__.component__nsext__.html │ │ │ └── data.service.ts │ │ ├── index.ts │ │ ├── index_spec.ts │ │ ├── schema.d.ts │ │ └── schema.json ├── generate │ ├── common-module │ │ ├── _files │ │ │ └── __name__.common.ts │ │ ├── index.ts │ │ ├── schema.d.ts │ │ └── schema.json │ ├── component │ │ ├── _files │ │ │ └── __path__ │ │ │ │ ├── __stylesheetName__ │ │ │ │ └── __templateName__ │ │ ├── ast-utils.ts │ │ ├── find-module.ts │ │ ├── index.ts │ │ ├── index_spec.ts │ │ ├── schema.d.ts │ │ └── schema.json │ ├── module │ │ ├── _files │ │ │ └── __name__.common.ts │ │ ├── index.ts │ │ ├── index_spec.ts │ │ ├── schema.d.ts │ │ └── schema.json │ ├── utils.ts │ └── utils_spec.ts ├── mapped-imports-rule-utils.ts ├── migrate-component │ ├── _ns-files │ │ └── __path__ │ │ │ └── __htmlFileName@addNsExtension__ │ ├── _ns-style │ │ └── __path__ │ │ │ └── __styleFileName@addNsExtension__ │ ├── component-info-utils.ts │ ├── index.ts │ ├── index_spec.ts │ ├── schema.d.ts │ └── schema.json ├── migrate-module │ ├── _ns-files │ │ └── __name@dasherize__.module__nsext__.ts │ ├── index.ts │ ├── index_spec.ts │ ├── module-info-utils.ts │ ├── schema.d.ts │ └── schema.json ├── models │ └── nsconfig.d.ts ├── ng-new │ ├── application │ │ ├── _files │ │ │ ├── __dot__gitignore │ │ │ ├── __sourcedir__ │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.__style__ │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ └── main.ts │ │ │ ├── nativescript.config.ts │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── index.ts │ │ ├── index_spec.ts │ │ ├── schema.d.ts │ │ └── schema.json │ ├── index.ts │ ├── schema.d.ts │ ├── schema.json │ └── shared │ │ ├── _files │ │ ├── README.md │ │ ├── __dot__gitignore │ │ ├── __sourcedir__ │ │ │ ├── app │ │ │ │ ├── app-routing.module.tns.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.__style__ │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.tns.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.tns.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── app.routes.ts │ │ │ │ └── home │ │ │ │ │ ├── home.component.__style__ │ │ │ │ │ ├── home.component.html │ │ │ │ │ ├── home.component.tns.html │ │ │ │ │ └── home.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── browserslist │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.tns.ts │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.__style__ │ │ │ ├── test.ts │ │ │ └── tslint.json │ │ ├── angular.json │ │ ├── karma.conf.js │ │ ├── nativescript.config.ts │ │ ├── package.json │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ ├── tsconfig.tns.json │ │ └── tslint.json │ │ ├── _sample-files │ │ └── barcelona │ │ │ ├── barcelona.common.ts │ │ │ ├── barcelona.module.tns.ts │ │ │ ├── barcelona.module.ts │ │ │ ├── player-detail │ │ │ ├── player-detail.component.html │ │ │ ├── player-detail.component.tns.html │ │ │ └── player-detail.component.ts │ │ │ ├── player.model.ts │ │ │ ├── player.service.ts │ │ │ └── players │ │ │ ├── players.component.html │ │ │ ├── players.component.tns.html │ │ │ └── players.component.ts │ │ ├── index.ts │ │ ├── index_spec.ts │ │ ├── schema.d.ts │ │ └── schema.json ├── route-utils.ts ├── styling │ ├── _css-files │ │ └── app.css │ ├── _scss-files │ │ ├── _app-common.scss │ │ ├── app.android.scss │ │ └── app.ios.scss │ ├── index.ts │ ├── index_spec.ts │ ├── schema.d.ts │ └── schema.json ├── test-utils.ts ├── ts-utils.ts └── utils.ts ├── tsconfig.json └── tslint.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CI_JOBS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/CI_JOBS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/README.md -------------------------------------------------------------------------------- /adding-angular-CLI-to-NativeScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/adding-angular-CLI-to-NativeScript.md -------------------------------------------------------------------------------- /jasmine-config/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/jasmine-config/jasmine.json -------------------------------------------------------------------------------- /jasmine-config/reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/jasmine-config/reporter.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/package.json -------------------------------------------------------------------------------- /src/add-ns/_ns-files/__sourceDir__/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_ns-files/__sourceDir__/app.css -------------------------------------------------------------------------------- /src/add-ns/_ns-files/__sourceDir__/app/__entryComponentName@dasherize__.component__nsext__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_ns-files/__sourceDir__/app/__entryComponentName@dasherize__.component__nsext__.html -------------------------------------------------------------------------------- /src/add-ns/_ns-files/__sourceDir__/app/__entryComponentName@dasherize__.component__nsext__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_ns-files/__sourceDir__/app/__entryComponentName@dasherize__.component__nsext__.ts -------------------------------------------------------------------------------- /src/add-ns/_ns-files/__sourceDir__/app/__entryModuleName@dasherize__.module__nsext__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_ns-files/__sourceDir__/app/__entryModuleName@dasherize__.module__nsext__.ts -------------------------------------------------------------------------------- /src/add-ns/_ns-files/__sourceDir__/app/app-routing.module__nsext__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_ns-files/__sourceDir__/app/app-routing.module__nsext__.ts -------------------------------------------------------------------------------- /src/add-ns/_ns-files/__sourceDir__/main__nsext__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_ns-files/__sourceDir__/main__nsext__.ts -------------------------------------------------------------------------------- /src/add-ns/_ns-files/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_ns-files/nativescript.config.ts -------------------------------------------------------------------------------- /src/add-ns/_ns-files/tsconfig__nsext__.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_ns-files/tsconfig__nsext__.json -------------------------------------------------------------------------------- /src/add-ns/_sample-files/barcelona/barcelona.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_sample-files/barcelona/barcelona.common.ts -------------------------------------------------------------------------------- /src/add-ns/_sample-files/barcelona/barcelona.module__nsext__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_sample-files/barcelona/barcelona.module__nsext__.ts -------------------------------------------------------------------------------- /src/add-ns/_sample-files/barcelona/barcelona.module__webext__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_sample-files/barcelona/barcelona.module__webext__.ts -------------------------------------------------------------------------------- /src/add-ns/_sample-files/barcelona/player-detail/player-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_sample-files/barcelona/player-detail/player-detail.component.ts -------------------------------------------------------------------------------- /src/add-ns/_sample-files/barcelona/player-detail/player-detail.component__nsext__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_sample-files/barcelona/player-detail/player-detail.component__nsext__.html -------------------------------------------------------------------------------- /src/add-ns/_sample-files/barcelona/player-detail/player-detail.component__webext__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_sample-files/barcelona/player-detail/player-detail.component__webext__.html -------------------------------------------------------------------------------- /src/add-ns/_sample-files/barcelona/player.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_sample-files/barcelona/player.model.ts -------------------------------------------------------------------------------- /src/add-ns/_sample-files/barcelona/player.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_sample-files/barcelona/player.service.ts -------------------------------------------------------------------------------- /src/add-ns/_sample-files/barcelona/players/players.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_sample-files/barcelona/players/players.component.ts -------------------------------------------------------------------------------- /src/add-ns/_sample-files/barcelona/players/players.component__nsext__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_sample-files/barcelona/players/players.component__nsext__.html -------------------------------------------------------------------------------- /src/add-ns/_sample-files/barcelona/players/players.component__webext__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/_sample-files/barcelona/players/players.component__webext__.html -------------------------------------------------------------------------------- /src/add-ns/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/index.ts -------------------------------------------------------------------------------- /src/add-ns/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/index_spec.ts -------------------------------------------------------------------------------- /src/add-ns/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/schema.d.ts -------------------------------------------------------------------------------- /src/add-ns/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/add-ns/schema.json -------------------------------------------------------------------------------- /src/angular-json/_files/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/angular-json/_files/angular.json -------------------------------------------------------------------------------- /src/angular-json/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/angular-json/index.ts -------------------------------------------------------------------------------- /src/angular-json/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/angular-json/index_spec.ts -------------------------------------------------------------------------------- /src/angular-json/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/angular-json/schema.d.ts -------------------------------------------------------------------------------- /src/angular-json/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/angular-json/schema.json -------------------------------------------------------------------------------- /src/angular-project-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/angular-project-parser.ts -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/app.gradle -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/values-v21/colors.xml -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/values-v21/styles.xml -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/values-v29/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/values-v29/styles.xml -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/values/colors.xml -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/Android/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/Android/values/styles.xml -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/Info.plist -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /src/app-resources/_files/__name__/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/_files/__name__/iOS/build.xcconfig -------------------------------------------------------------------------------- /src/app-resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/index.ts -------------------------------------------------------------------------------- /src/app-resources/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/schema.d.ts -------------------------------------------------------------------------------- /src/app-resources/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/app-resources/schema.json -------------------------------------------------------------------------------- /src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/collection.json -------------------------------------------------------------------------------- /src/convert-relative-imports/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/convert-relative-imports/index.ts -------------------------------------------------------------------------------- /src/convert-relative-imports/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/convert-relative-imports/index_spec.ts -------------------------------------------------------------------------------- /src/convert-relative-imports/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/convert-relative-imports/schema.d.ts -------------------------------------------------------------------------------- /src/convert-relative-imports/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/convert-relative-imports/schema.json -------------------------------------------------------------------------------- /src/decorator-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/decorator-utils.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-nsonly/__name__/__detail__-detail/__detail__-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-nsonly/__name__/__detail__-detail/__detail__-detail.component.html -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-nsonly/__name__/__detail__-detail/__detail__-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-nsonly/__name__/__detail__-detail/__detail__-detail.component.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-nsonly/__name__/__master__.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-nsonly/__name__/__master__.module.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-nsonly/__name__/__master__/__master__.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-nsonly/__name__/__master__/__master__.component.html -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-nsonly/__name__/__master__/__master__.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-nsonly/__name__/__master__/__master__.component.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-nsonly/__name__/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-nsonly/__name__/data.service.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-shared/__name__/__detail__-detail/__detail__-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-shared/__name__/__detail__-detail/__detail__-detail.component.html -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-shared/__name__/__detail__-detail/__detail__-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-shared/__name__/__detail__-detail/__detail__-detail.component.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-shared/__name__/__detail__-detail/__detail__-detail.component__nsext__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-shared/__name__/__detail__-detail/__detail__-detail.component__nsext__.html -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-shared/__name__/__master__.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-shared/__name__/__master__.common.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-shared/__name__/__master__.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-shared/__name__/__master__.module.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-shared/__name__/__master__.module__nsext__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-shared/__name__/__master__.module__nsext__.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-shared/__name__/__master__/__master__.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-shared/__name__/__master__/__master__.component.html -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-shared/__name__/__master__/__master__.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-shared/__name__/__master__/__master__.component.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-shared/__name__/__master__/__master__.component__nsext__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-shared/__name__/__master__/__master__.component__nsext__.html -------------------------------------------------------------------------------- /src/generate-template/master-detail/_files-shared/__name__/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/_files-shared/__name__/data.service.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/index.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/index_spec.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/schema.d.ts -------------------------------------------------------------------------------- /src/generate-template/master-detail/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate-template/master-detail/schema.json -------------------------------------------------------------------------------- /src/generate/common-module/_files/__name__.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/common-module/_files/__name__.common.ts -------------------------------------------------------------------------------- /src/generate/common-module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/common-module/index.ts -------------------------------------------------------------------------------- /src/generate/common-module/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/common-module/schema.d.ts -------------------------------------------------------------------------------- /src/generate/common-module/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/common-module/schema.json -------------------------------------------------------------------------------- /src/generate/component/_files/__path__/__stylesheetName__: -------------------------------------------------------------------------------- 1 | /* Add mobile styles for the component here. */ 2 | -------------------------------------------------------------------------------- /src/generate/component/_files/__path__/__templateName__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/component/_files/__path__/__templateName__ -------------------------------------------------------------------------------- /src/generate/component/ast-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/component/ast-utils.ts -------------------------------------------------------------------------------- /src/generate/component/find-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/component/find-module.ts -------------------------------------------------------------------------------- /src/generate/component/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/component/index.ts -------------------------------------------------------------------------------- /src/generate/component/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/component/index_spec.ts -------------------------------------------------------------------------------- /src/generate/component/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/component/schema.d.ts -------------------------------------------------------------------------------- /src/generate/component/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/component/schema.json -------------------------------------------------------------------------------- /src/generate/module/_files/__name__.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/module/_files/__name__.common.ts -------------------------------------------------------------------------------- /src/generate/module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/module/index.ts -------------------------------------------------------------------------------- /src/generate/module/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/module/index_spec.ts -------------------------------------------------------------------------------- /src/generate/module/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/module/schema.d.ts -------------------------------------------------------------------------------- /src/generate/module/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/module/schema.json -------------------------------------------------------------------------------- /src/generate/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/utils.ts -------------------------------------------------------------------------------- /src/generate/utils_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/generate/utils_spec.ts -------------------------------------------------------------------------------- /src/mapped-imports-rule-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/mapped-imports-rule-utils.ts -------------------------------------------------------------------------------- /src/migrate-component/_ns-files/__path__/__htmlFileName@addNsExtension__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/migrate-component/_ns-files/__path__/__htmlFileName@addNsExtension__ -------------------------------------------------------------------------------- /src/migrate-component/_ns-style/__path__/__styleFileName@addNsExtension__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/migrate-component/_ns-style/__path__/__styleFileName@addNsExtension__ -------------------------------------------------------------------------------- /src/migrate-component/component-info-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/migrate-component/component-info-utils.ts -------------------------------------------------------------------------------- /src/migrate-component/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/migrate-component/index.ts -------------------------------------------------------------------------------- /src/migrate-component/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/migrate-component/index_spec.ts -------------------------------------------------------------------------------- /src/migrate-component/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/migrate-component/schema.d.ts -------------------------------------------------------------------------------- /src/migrate-component/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/migrate-component/schema.json -------------------------------------------------------------------------------- /src/migrate-module/_ns-files/__name@dasherize__.module__nsext__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/migrate-module/_ns-files/__name@dasherize__.module__nsext__.ts -------------------------------------------------------------------------------- /src/migrate-module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/migrate-module/index.ts -------------------------------------------------------------------------------- /src/migrate-module/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/migrate-module/index_spec.ts -------------------------------------------------------------------------------- /src/migrate-module/module-info-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/migrate-module/module-info-utils.ts -------------------------------------------------------------------------------- /src/migrate-module/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/migrate-module/schema.d.ts -------------------------------------------------------------------------------- /src/migrate-module/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/migrate-module/schema.json -------------------------------------------------------------------------------- /src/models/nsconfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/models/nsconfig.d.ts -------------------------------------------------------------------------------- /src/ng-new/application/_files/__dot__gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/_files/__dot__gitignore -------------------------------------------------------------------------------- /src/ng-new/application/_files/__sourcedir__/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/_files/__sourcedir__/app-routing.module.ts -------------------------------------------------------------------------------- /src/ng-new/application/_files/__sourcedir__/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/_files/__sourcedir__/app.component.ts -------------------------------------------------------------------------------- /src/ng-new/application/_files/__sourcedir__/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/_files/__sourcedir__/app.module.ts -------------------------------------------------------------------------------- /src/ng-new/application/_files/__sourcedir__/home/home.component.__style__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ng-new/application/_files/__sourcedir__/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/_files/__sourcedir__/home/home.component.html -------------------------------------------------------------------------------- /src/ng-new/application/_files/__sourcedir__/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/_files/__sourcedir__/home/home.component.ts -------------------------------------------------------------------------------- /src/ng-new/application/_files/__sourcedir__/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/_files/__sourcedir__/main.ts -------------------------------------------------------------------------------- /src/ng-new/application/_files/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/_files/nativescript.config.ts -------------------------------------------------------------------------------- /src/ng-new/application/_files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/_files/package.json -------------------------------------------------------------------------------- /src/ng-new/application/_files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/_files/tsconfig.json -------------------------------------------------------------------------------- /src/ng-new/application/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/index.ts -------------------------------------------------------------------------------- /src/ng-new/application/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/index_spec.ts -------------------------------------------------------------------------------- /src/ng-new/application/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/schema.d.ts -------------------------------------------------------------------------------- /src/ng-new/application/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/application/schema.json -------------------------------------------------------------------------------- /src/ng-new/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/index.ts -------------------------------------------------------------------------------- /src/ng-new/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/schema.d.ts -------------------------------------------------------------------------------- /src/ng-new/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/schema.json -------------------------------------------------------------------------------- /src/ng-new/shared/_files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/README.md -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__dot__gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__dot__gitignore -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/app/app-routing.module.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/app/app-routing.module.tns.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/app/app.component.__style__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/app/app.component.html -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/app/app.component.tns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/app/app.component.tns.html -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/app/app.component.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/app/app.module.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/app/app.module.tns.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/app/app.module.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/app/app.routes.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/app/home/home.component.__style__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/app/home/home.component.html -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/app/home/home.component.tns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/app/home/home.component.tns.html -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/app/home/home.component.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/browserslist -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/environments/environment.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/favicon.ico -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/index.html -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/main.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/main.tns.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/main.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/polyfills.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/styles.__style__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/styles.__style__ -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/test.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_files/__sourcedir__/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/__sourcedir__/tslint.json -------------------------------------------------------------------------------- /src/ng-new/shared/_files/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/angular.json -------------------------------------------------------------------------------- /src/ng-new/shared/_files/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/karma.conf.js -------------------------------------------------------------------------------- /src/ng-new/shared/_files/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/nativescript.config.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/package.json -------------------------------------------------------------------------------- /src/ng-new/shared/_files/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/tsconfig.app.json -------------------------------------------------------------------------------- /src/ng-new/shared/_files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/tsconfig.json -------------------------------------------------------------------------------- /src/ng-new/shared/_files/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/tsconfig.spec.json -------------------------------------------------------------------------------- /src/ng-new/shared/_files/tsconfig.tns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/tsconfig.tns.json -------------------------------------------------------------------------------- /src/ng-new/shared/_files/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_files/tslint.json -------------------------------------------------------------------------------- /src/ng-new/shared/_sample-files/barcelona/barcelona.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_sample-files/barcelona/barcelona.common.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_sample-files/barcelona/barcelona.module.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_sample-files/barcelona/barcelona.module.tns.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_sample-files/barcelona/barcelona.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_sample-files/barcelona/barcelona.module.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_sample-files/barcelona/player-detail/player-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_sample-files/barcelona/player-detail/player-detail.component.html -------------------------------------------------------------------------------- /src/ng-new/shared/_sample-files/barcelona/player-detail/player-detail.component.tns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_sample-files/barcelona/player-detail/player-detail.component.tns.html -------------------------------------------------------------------------------- /src/ng-new/shared/_sample-files/barcelona/player-detail/player-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_sample-files/barcelona/player-detail/player-detail.component.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_sample-files/barcelona/player.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_sample-files/barcelona/player.model.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_sample-files/barcelona/player.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_sample-files/barcelona/player.service.ts -------------------------------------------------------------------------------- /src/ng-new/shared/_sample-files/barcelona/players/players.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_sample-files/barcelona/players/players.component.html -------------------------------------------------------------------------------- /src/ng-new/shared/_sample-files/barcelona/players/players.component.tns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_sample-files/barcelona/players/players.component.tns.html -------------------------------------------------------------------------------- /src/ng-new/shared/_sample-files/barcelona/players/players.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/_sample-files/barcelona/players/players.component.ts -------------------------------------------------------------------------------- /src/ng-new/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/index.ts -------------------------------------------------------------------------------- /src/ng-new/shared/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/index_spec.ts -------------------------------------------------------------------------------- /src/ng-new/shared/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/schema.d.ts -------------------------------------------------------------------------------- /src/ng-new/shared/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ng-new/shared/schema.json -------------------------------------------------------------------------------- /src/route-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/route-utils.ts -------------------------------------------------------------------------------- /src/styling/_css-files/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/styling/_css-files/app.css -------------------------------------------------------------------------------- /src/styling/_scss-files/_app-common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/styling/_scss-files/_app-common.scss -------------------------------------------------------------------------------- /src/styling/_scss-files/app.android.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/styling/_scss-files/app.android.scss -------------------------------------------------------------------------------- /src/styling/_scss-files/app.ios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/styling/_scss-files/app.ios.scss -------------------------------------------------------------------------------- /src/styling/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/styling/index.ts -------------------------------------------------------------------------------- /src/styling/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/styling/index_spec.ts -------------------------------------------------------------------------------- /src/styling/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/styling/schema.d.ts -------------------------------------------------------------------------------- /src/styling/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/styling/schema.json -------------------------------------------------------------------------------- /src/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/test-utils.ts -------------------------------------------------------------------------------- /src/ts-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/ts-utils.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-schematics/HEAD/tslint.json --------------------------------------------------------------------------------