├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── push-dist.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── config └── ember-cli-update.json ├── ember-route-template ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── .template-lintrc.cjs ├── CHANGELOG.md ├── addon-main.cjs ├── babel.config.json ├── package.json ├── rollup.config.mjs ├── src │ ├── index.ts │ └── template-registry.ts ├── tsconfig.json └── unpublished-development-types │ └── index.d.ts ├── package.json ├── test-app ├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── .stylelintignore ├── .stylelintrc.js ├── .template-lintrc.js ├── .watchmanconfig ├── README.md ├── app │ ├── app.ts │ ├── components │ │ └── .gitkeep │ ├── config │ │ └── environment.d.ts │ ├── controllers │ │ ├── .gitkeep │ │ └── controller-works.ts │ ├── helpers │ │ └── .gitkeep │ ├── index.html │ ├── models │ │ └── .gitkeep │ ├── router.ts │ ├── routes │ │ ├── .gitkeep │ │ ├── component-works.ts │ │ ├── controller-works.ts │ │ └── model-works.ts │ ├── styles │ │ └── app.css │ └── templates │ │ ├── application.hbs │ │ ├── component-works.gts │ │ ├── controller-works.gts │ │ ├── gjs-template-works.gjs │ │ ├── gts-template-works.gts │ │ ├── hbs-template-works.hbs │ │ └── model-works.gts ├── config │ ├── ember-cli-update.json │ ├── ember-try.js │ ├── environment.js │ ├── optional-features.json │ └── targets.js ├── ember-cli-build.js ├── package.json ├── public │ └── robots.txt ├── testem.js ├── tests │ ├── acceptance │ │ └── route-templates-test.ts │ ├── helpers │ │ └── index.ts │ ├── index.html │ ├── integration │ │ └── .gitkeep │ ├── test-helper.ts │ └── unit │ │ └── .gitkeep ├── tsconfig.json └── types │ ├── ember-page-title.d.ts │ └── global.d.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/push-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/.github/workflows/push-dist.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/README.md -------------------------------------------------------------------------------- /config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/config/ember-cli-update.json -------------------------------------------------------------------------------- /ember-route-template/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/.eslintignore -------------------------------------------------------------------------------- /ember-route-template/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/.eslintrc.cjs -------------------------------------------------------------------------------- /ember-route-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/.gitignore -------------------------------------------------------------------------------- /ember-route-template/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/.prettierignore -------------------------------------------------------------------------------- /ember-route-template/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/.prettierrc.cjs -------------------------------------------------------------------------------- /ember-route-template/.template-lintrc.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended', 5 | }; 6 | -------------------------------------------------------------------------------- /ember-route-template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/CHANGELOG.md -------------------------------------------------------------------------------- /ember-route-template/addon-main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/addon-main.cjs -------------------------------------------------------------------------------- /ember-route-template/babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/babel.config.json -------------------------------------------------------------------------------- /ember-route-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/package.json -------------------------------------------------------------------------------- /ember-route-template/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/rollup.config.mjs -------------------------------------------------------------------------------- /ember-route-template/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/src/index.ts -------------------------------------------------------------------------------- /ember-route-template/src/template-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/src/template-registry.ts -------------------------------------------------------------------------------- /ember-route-template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/tsconfig.json -------------------------------------------------------------------------------- /ember-route-template/unpublished-development-types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/ember-route-template/unpublished-development-types/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/package.json -------------------------------------------------------------------------------- /test-app/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/.editorconfig -------------------------------------------------------------------------------- /test-app/.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/.ember-cli -------------------------------------------------------------------------------- /test-app/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/.eslintignore -------------------------------------------------------------------------------- /test-app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/.eslintrc.js -------------------------------------------------------------------------------- /test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/.gitignore -------------------------------------------------------------------------------- /test-app/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/.prettierignore -------------------------------------------------------------------------------- /test-app/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/.prettierrc.js -------------------------------------------------------------------------------- /test-app/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/.stylelintignore -------------------------------------------------------------------------------- /test-app/.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/.stylelintrc.js -------------------------------------------------------------------------------- /test-app/.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended', 5 | }; 6 | -------------------------------------------------------------------------------- /test-app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["dist"] 3 | } 4 | -------------------------------------------------------------------------------- /test-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/README.md -------------------------------------------------------------------------------- /test-app/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/app.ts -------------------------------------------------------------------------------- /test-app/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-app/app/config/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/config/environment.d.ts -------------------------------------------------------------------------------- /test-app/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-app/app/controllers/controller-works.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/controllers/controller-works.ts -------------------------------------------------------------------------------- /test-app/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-app/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/index.html -------------------------------------------------------------------------------- /test-app/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-app/app/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/router.ts -------------------------------------------------------------------------------- /test-app/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-app/app/routes/component-works.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/routes/component-works.ts -------------------------------------------------------------------------------- /test-app/app/routes/controller-works.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/routes/controller-works.ts -------------------------------------------------------------------------------- /test-app/app/routes/model-works.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/routes/model-works.ts -------------------------------------------------------------------------------- /test-app/app/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/styles/app.css -------------------------------------------------------------------------------- /test-app/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/templates/application.hbs -------------------------------------------------------------------------------- /test-app/app/templates/component-works.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/templates/component-works.gts -------------------------------------------------------------------------------- /test-app/app/templates/controller-works.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/templates/controller-works.gts -------------------------------------------------------------------------------- /test-app/app/templates/gjs-template-works.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/templates/gjs-template-works.gjs -------------------------------------------------------------------------------- /test-app/app/templates/gts-template-works.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/templates/gts-template-works.gts -------------------------------------------------------------------------------- /test-app/app/templates/hbs-template-works.hbs: -------------------------------------------------------------------------------- 1 | Hello from hbs-template-works.hbs 2 | -------------------------------------------------------------------------------- /test-app/app/templates/model-works.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/app/templates/model-works.gts -------------------------------------------------------------------------------- /test-app/config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/config/ember-cli-update.json -------------------------------------------------------------------------------- /test-app/config/ember-try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/config/ember-try.js -------------------------------------------------------------------------------- /test-app/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/config/environment.js -------------------------------------------------------------------------------- /test-app/config/optional-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/config/optional-features.json -------------------------------------------------------------------------------- /test-app/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/config/targets.js -------------------------------------------------------------------------------- /test-app/ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/ember-cli-build.js -------------------------------------------------------------------------------- /test-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/package.json -------------------------------------------------------------------------------- /test-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /test-app/testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/testem.js -------------------------------------------------------------------------------- /test-app/tests/acceptance/route-templates-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/tests/acceptance/route-templates-test.ts -------------------------------------------------------------------------------- /test-app/tests/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/tests/helpers/index.ts -------------------------------------------------------------------------------- /test-app/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/tests/index.html -------------------------------------------------------------------------------- /test-app/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-app/tests/test-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/tests/test-helper.ts -------------------------------------------------------------------------------- /test-app/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/tsconfig.json -------------------------------------------------------------------------------- /test-app/types/ember-page-title.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/types/ember-page-title.d.ts -------------------------------------------------------------------------------- /test-app/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/test-app/types/global.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/ember-route-template/HEAD/yarn.lock --------------------------------------------------------------------------------