├── tests └── fixtures │ ├── hello-world │ ├── input │ │ ├── CONTRIBUTING.md │ │ ├── addon │ │ │ ├── .gitkeep │ │ │ └── components │ │ │ │ ├── hello.css │ │ │ │ ├── hello.ts │ │ │ │ └── hello.hbs │ │ ├── app │ │ │ ├── .gitkeep │ │ │ └── components │ │ │ │ └── hello.js │ │ ├── pnpm-lock.yaml │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ ├── dummy │ │ │ │ ├── app │ │ │ │ │ ├── styles │ │ │ │ │ │ └── app.css │ │ │ │ │ ├── components │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── models │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── routes │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── templates │ │ │ │ │ │ └── application.hbs │ │ │ │ ├── public │ │ │ │ │ └── robots.txt │ │ │ │ └── config │ │ │ │ │ ├── optional-features.json │ │ │ │ │ └── targets.js │ │ │ └── integration │ │ │ │ └── .gitkeep │ │ ├── types │ │ │ ├── dummy │ │ │ │ └── index.d.ts │ │ │ └── global.d.ts │ │ ├── .watchmanconfig │ │ ├── addon-test-support │ │ │ ├── index.ts │ │ │ └── components │ │ │ │ └── hello.ts │ │ ├── .prettierrc.js │ │ ├── index.js │ │ └── .template-lintrc.js │ ├── output │ │ ├── pnpm-lock.yaml │ │ ├── CONTRIBUTING.md │ │ ├── hello-world │ │ │ ├── src │ │ │ │ ├── .gitkeep │ │ │ │ ├── test-support.ts │ │ │ │ ├── components │ │ │ │ │ ├── hello.css │ │ │ │ │ ├── hello.ts │ │ │ │ │ └── hello.hbs │ │ │ │ └── test-support │ │ │ │ │ └── components │ │ │ │ │ └── hello.ts │ │ │ ├── .stylelintignore │ │ │ ├── .stylelintrc.mjs │ │ │ ├── prettier.config.mjs │ │ │ ├── eslint.config.mjs │ │ │ ├── .template-lintrc.cjs │ │ │ ├── addon-main.cjs │ │ │ ├── .prettierignore │ │ │ ├── .gitignore │ │ │ └── unpublished-development-types │ │ │ │ └── index.d.ts │ │ ├── test-app │ │ │ ├── app │ │ │ │ ├── helpers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ ├── routes │ │ │ │ │ └── .gitkeep │ │ │ │ ├── styles │ │ │ │ │ └── app.css │ │ │ │ ├── components │ │ │ │ │ └── .gitkeep │ │ │ │ ├── controllers │ │ │ │ │ └── .gitkeep │ │ │ │ └── templates │ │ │ │ │ └── application.hbs │ │ │ ├── tests │ │ │ │ ├── unit │ │ │ │ │ └── .gitkeep │ │ │ │ └── integration │ │ │ │ │ └── .gitkeep │ │ │ ├── types │ │ │ │ ├── global.d.ts │ │ │ │ └── test-app │ │ │ │ │ └── index.d.ts │ │ │ ├── .stylelintignore │ │ │ ├── .watchmanconfig │ │ │ ├── public │ │ │ │ └── robots.txt │ │ │ ├── .stylelintrc.mjs │ │ │ ├── prettier.config.mjs │ │ │ ├── eslint.config.mjs │ │ │ ├── .template-lintrc.cjs │ │ │ ├── .prettierignore │ │ │ ├── config │ │ │ │ ├── optional-features.json │ │ │ │ └── targets.js │ │ │ └── .gitignore │ │ ├── pnpm-workspace.yaml │ │ ├── .npmrc │ │ └── .gitignore │ └── index.ts │ ├── new-v1-addon-customizations │ ├── input │ │ ├── README.md │ │ ├── addon │ │ │ └── .gitkeep │ │ ├── app │ │ │ └── .gitkeep │ │ ├── CONTRIBUTING.md │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ ├── integration │ │ │ │ └── .gitkeep │ │ │ └── dummy │ │ │ │ ├── app │ │ │ │ ├── helpers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ ├── routes │ │ │ │ │ └── .gitkeep │ │ │ │ ├── styles │ │ │ │ │ └── app.css │ │ │ │ ├── components │ │ │ │ │ └── .gitkeep │ │ │ │ ├── controllers │ │ │ │ │ └── .gitkeep │ │ │ │ └── templates │ │ │ │ │ └── application.hbs │ │ │ │ ├── public │ │ │ │ └── robots.txt │ │ │ │ └── config │ │ │ │ ├── optional-features.json │ │ │ │ └── targets.js │ │ ├── types │ │ │ ├── dummy │ │ │ │ └── index.d.ts │ │ │ └── global.d.ts │ │ ├── .watchmanconfig │ │ ├── .prettierrc.js │ │ ├── .template-lintrc.js │ │ └── index.js │ └── output │ │ ├── README.md │ │ ├── CONTRIBUTING.md │ │ ├── demo-app │ │ ├── app │ │ │ ├── models │ │ │ │ └── .gitkeep │ │ │ ├── routes │ │ │ │ └── .gitkeep │ │ │ ├── styles │ │ │ │ └── app.css │ │ │ ├── components │ │ │ │ └── .gitkeep │ │ │ ├── controllers │ │ │ │ └── .gitkeep │ │ │ ├── helpers │ │ │ │ └── .gitkeep │ │ │ └── templates │ │ │ │ └── application.hbs │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ └── integration │ │ │ │ └── .gitkeep │ │ ├── types │ │ │ ├── global.d.ts │ │ │ └── demo-app-for-new-v1-addon │ │ │ │ └── index.d.ts │ │ ├── .stylelintignore │ │ ├── .watchmanconfig │ │ ├── .stylelintrc.mjs │ │ ├── public │ │ │ └── robots.txt │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ ├── .prettierignore │ │ └── config │ │ │ ├── optional-features.json │ │ │ └── targets.js │ │ ├── packages │ │ └── new-v1-addon │ │ │ ├── README.md │ │ │ ├── src │ │ │ └── .gitkeep │ │ │ ├── .stylelintignore │ │ │ ├── .stylelintrc.mjs │ │ │ ├── prettier.config.mjs │ │ │ ├── eslint.config.mjs │ │ │ ├── .template-lintrc.cjs │ │ │ ├── addon-main.cjs │ │ │ ├── .prettierignore │ │ │ ├── .gitignore │ │ │ └── unpublished-development-types │ │ │ └── index.d.ts │ │ ├── pnpm-workspace.yaml │ │ ├── .npmrc │ │ └── .gitignore │ ├── new-v1-addon-javascript │ ├── input │ │ ├── README.md │ │ ├── app │ │ │ └── .gitkeep │ │ ├── CONTRIBUTING.md │ │ ├── addon │ │ │ └── .gitkeep │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ ├── integration │ │ │ │ └── .gitkeep │ │ │ └── dummy │ │ │ │ ├── app │ │ │ │ ├── helpers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ ├── routes │ │ │ │ │ └── .gitkeep │ │ │ │ ├── styles │ │ │ │ │ └── app.css │ │ │ │ ├── components │ │ │ │ │ └── .gitkeep │ │ │ │ ├── controllers │ │ │ │ │ └── .gitkeep │ │ │ │ └── templates │ │ │ │ │ └── application.hbs │ │ │ │ ├── public │ │ │ │ └── robots.txt │ │ │ │ └── config │ │ │ │ ├── optional-features.json │ │ │ │ └── targets.js │ │ ├── .watchmanconfig │ │ ├── .prettierrc.js │ │ ├── .template-lintrc.js │ │ └── index.js │ └── output │ │ ├── README.md │ │ ├── CONTRIBUTING.md │ │ ├── new-v1-addon │ │ ├── README.md │ │ ├── src │ │ │ └── .gitkeep │ │ ├── .stylelintignore │ │ ├── .stylelintrc.mjs │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ ├── addon-main.cjs │ │ ├── .prettierignore │ │ └── .gitignore │ │ ├── test-app │ │ ├── app │ │ │ ├── styles │ │ │ │ └── app.css │ │ │ ├── components │ │ │ │ └── .gitkeep │ │ │ ├── helpers │ │ │ │ └── .gitkeep │ │ │ ├── models │ │ │ │ └── .gitkeep │ │ │ ├── routes │ │ │ │ └── .gitkeep │ │ │ ├── controllers │ │ │ │ └── .gitkeep │ │ │ └── templates │ │ │ │ └── application.hbs │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ └── integration │ │ │ │ └── .gitkeep │ │ ├── .stylelintignore │ │ ├── .watchmanconfig │ │ ├── .stylelintrc.mjs │ │ ├── public │ │ │ └── robots.txt │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ ├── .prettierignore │ │ └── config │ │ │ ├── optional-features.json │ │ │ └── targets.js │ │ ├── pnpm-workspace.yaml │ │ ├── .npmrc │ │ └── .gitignore │ ├── new-v1-addon-typescript │ ├── input │ │ ├── README.md │ │ ├── app │ │ │ └── .gitkeep │ │ ├── CONTRIBUTING.md │ │ ├── addon │ │ │ └── .gitkeep │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ ├── integration │ │ │ │ └── .gitkeep │ │ │ └── dummy │ │ │ │ ├── app │ │ │ │ ├── helpers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ ├── routes │ │ │ │ │ └── .gitkeep │ │ │ │ ├── styles │ │ │ │ │ └── app.css │ │ │ │ ├── components │ │ │ │ │ └── .gitkeep │ │ │ │ ├── controllers │ │ │ │ │ └── .gitkeep │ │ │ │ └── templates │ │ │ │ │ └── application.hbs │ │ │ │ ├── public │ │ │ │ └── robots.txt │ │ │ │ └── config │ │ │ │ ├── optional-features.json │ │ │ │ └── targets.js │ │ ├── types │ │ │ ├── dummy │ │ │ │ └── index.d.ts │ │ │ └── global.d.ts │ │ ├── .watchmanconfig │ │ ├── .prettierrc.js │ │ ├── .template-lintrc.js │ │ └── index.js │ └── output │ │ ├── README.md │ │ ├── CONTRIBUTING.md │ │ ├── new-v1-addon │ │ ├── README.md │ │ ├── src │ │ │ └── .gitkeep │ │ ├── .stylelintignore │ │ ├── .stylelintrc.mjs │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ ├── addon-main.cjs │ │ ├── .prettierignore │ │ ├── .gitignore │ │ └── unpublished-development-types │ │ │ └── index.d.ts │ │ ├── test-app │ │ ├── app │ │ │ ├── styles │ │ │ │ └── app.css │ │ │ ├── components │ │ │ │ └── .gitkeep │ │ │ ├── helpers │ │ │ │ └── .gitkeep │ │ │ ├── models │ │ │ │ └── .gitkeep │ │ │ ├── routes │ │ │ │ └── .gitkeep │ │ │ ├── controllers │ │ │ │ └── .gitkeep │ │ │ └── templates │ │ │ │ └── application.hbs │ │ ├── types │ │ │ ├── global.d.ts │ │ │ └── test-app │ │ │ │ └── index.d.ts │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ └── integration │ │ │ │ └── .gitkeep │ │ ├── .stylelintignore │ │ ├── .watchmanconfig │ │ ├── .stylelintrc.mjs │ │ ├── public │ │ │ └── robots.txt │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ ├── .prettierignore │ │ └── config │ │ │ ├── optional-features.json │ │ │ └── targets.js │ │ ├── pnpm-workspace.yaml │ │ ├── .npmrc │ │ └── .gitignore │ ├── ember-container-query-glint │ ├── input │ │ ├── CHANGELOG.md │ │ ├── addon │ │ │ ├── .gitkeep │ │ │ └── styles │ │ │ │ └── container-query.css │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── helpers │ │ │ │ ├── height.js │ │ │ │ ├── width.js │ │ │ │ ├── cq-width.js │ │ │ │ ├── cq-height.js │ │ │ │ ├── aspect-ratio.js │ │ │ │ └── cq-aspect-ratio.js │ │ │ ├── components │ │ │ │ └── container-query.js │ │ │ └── modifiers │ │ │ │ └── container-query.js │ │ ├── CONTRIBUTING.md │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ ├── integration │ │ │ │ └── .gitkeep │ │ │ └── dummy │ │ │ │ ├── app │ │ │ │ ├── helpers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ ├── routes │ │ │ │ │ └── .gitkeep │ │ │ │ ├── components │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── widgets │ │ │ │ │ │ ├── widget-1 │ │ │ │ │ │ │ └── item.hbs │ │ │ │ │ │ └── widget-2 │ │ │ │ │ │ │ └── stacked-chart.hbs │ │ │ │ │ ├── tracks │ │ │ │ │ │ └── table.css │ │ │ │ │ └── ui │ │ │ │ │ │ └── page.hbs │ │ │ │ ├── controllers │ │ │ │ │ └── .gitkeep │ │ │ │ └── styles │ │ │ │ │ ├── index.css │ │ │ │ │ └── form.css │ │ │ │ ├── config │ │ │ │ ├── dependency-lint.js │ │ │ │ └── optional-features.json │ │ │ │ └── public │ │ │ │ ├── robots.txt │ │ │ │ ├── material-design-icons │ │ │ │ ├── stop.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ └── chevron-left.svg │ │ │ │ ├── assets │ │ │ │ └── favicon.png │ │ │ │ └── images │ │ │ │ └── widgets │ │ │ │ ├── widget-4 │ │ │ │ └── avatar.jpg │ │ │ │ └── widget-3 │ │ │ │ ├── venue-wide@1x.jpg │ │ │ │ ├── venue-square@1x.jpg │ │ │ │ └── venue-extra-wide@1x.jpg │ │ ├── .netlifyredirects │ │ ├── .watchmanconfig │ │ ├── index.js │ │ └── types │ │ │ └── global.d.ts │ └── output │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── test-app │ │ ├── app │ │ │ ├── models │ │ │ │ └── .gitkeep │ │ │ ├── routes │ │ │ │ └── .gitkeep │ │ │ ├── components │ │ │ │ ├── .gitkeep │ │ │ │ ├── widgets │ │ │ │ │ ├── widget-1 │ │ │ │ │ │ └── item.hbs │ │ │ │ │ └── widget-2 │ │ │ │ │ │ └── stacked-chart.hbs │ │ │ │ ├── tracks │ │ │ │ │ └── table.css │ │ │ │ └── ui │ │ │ │ │ └── page.hbs │ │ │ ├── controllers │ │ │ │ └── .gitkeep │ │ │ ├── helpers │ │ │ │ └── .gitkeep │ │ │ └── styles │ │ │ │ ├── index.css │ │ │ │ └── form.css │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ └── integration │ │ │ │ └── .gitkeep │ │ ├── types │ │ │ └── global.d.ts │ │ ├── .stylelintignore │ │ ├── .watchmanconfig │ │ ├── .stylelintrc.mjs │ │ ├── config │ │ │ ├── dependency-lint.js │ │ │ ├── optional-features.json │ │ │ └── targets.js │ │ ├── public │ │ │ ├── robots.txt │ │ │ ├── material-design-icons │ │ │ │ ├── stop.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ └── chevron-right.svg │ │ │ ├── assets │ │ │ │ └── favicon.png │ │ │ └── images │ │ │ │ └── widgets │ │ │ │ ├── widget-4 │ │ │ │ └── avatar.jpg │ │ │ │ └── widget-3 │ │ │ │ ├── venue-square@1x.jpg │ │ │ │ ├── venue-wide@1x.jpg │ │ │ │ └── venue-extra-wide@1x.jpg │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ └── .prettierignore │ │ ├── ember-container-query │ │ ├── src │ │ │ ├── .gitkeep │ │ │ └── styles │ │ │ │ └── container-query.css │ │ ├── .stylelintignore │ │ ├── .stylelintrc.mjs │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ ├── addon-main.cjs │ │ ├── .prettierignore │ │ ├── .gitignore │ │ └── unpublished-development-types │ │ │ └── index.d.ts │ │ ├── .netlifyredirects │ │ ├── pnpm-workspace.yaml │ │ ├── .npmrc │ │ └── .gitignore │ ├── ember-container-query-scoped │ ├── input │ │ ├── CHANGELOG.md │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── helpers │ │ │ │ ├── height.js │ │ │ │ ├── width.js │ │ │ │ ├── cq-height.js │ │ │ │ ├── cq-width.js │ │ │ │ ├── aspect-ratio.js │ │ │ │ └── cq-aspect-ratio.js │ │ │ ├── components │ │ │ │ └── container-query.js │ │ │ └── modifiers │ │ │ │ └── container-query.js │ │ ├── CONTRIBUTING.md │ │ ├── addon │ │ │ ├── .gitkeep │ │ │ └── styles │ │ │ │ └── container-query.css │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ ├── integration │ │ │ │ └── .gitkeep │ │ │ └── dummy │ │ │ │ ├── app │ │ │ │ ├── helpers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ ├── routes │ │ │ │ │ └── .gitkeep │ │ │ │ ├── components │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── widgets │ │ │ │ │ │ ├── widget-1 │ │ │ │ │ │ │ └── item.hbs │ │ │ │ │ │ └── widget-2 │ │ │ │ │ │ │ └── stacked-chart.hbs │ │ │ │ │ ├── tracks │ │ │ │ │ │ └── table.css │ │ │ │ │ └── ui │ │ │ │ │ │ └── page.hbs │ │ │ │ ├── controllers │ │ │ │ │ └── .gitkeep │ │ │ │ └── styles │ │ │ │ │ ├── index.css │ │ │ │ │ └── form.css │ │ │ │ ├── public │ │ │ │ ├── robots.txt │ │ │ │ ├── material-design-icons │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── alert.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ └── chevron-right.svg │ │ │ │ ├── assets │ │ │ │ │ └── favicon.png │ │ │ │ └── images │ │ │ │ │ └── widgets │ │ │ │ │ ├── widget-4 │ │ │ │ │ └── avatar.jpg │ │ │ │ │ └── widget-3 │ │ │ │ │ ├── venue-wide@1x.jpg │ │ │ │ │ ├── venue-square@1x.jpg │ │ │ │ │ └── venue-extra-wide@1x.jpg │ │ │ │ └── config │ │ │ │ ├── dependency-lint.js │ │ │ │ └── optional-features.json │ │ ├── .netlifyredirects │ │ ├── .watchmanconfig │ │ └── index.js │ └── output │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── test-app │ │ ├── types │ │ │ └── global.d.ts │ │ ├── app │ │ │ ├── components │ │ │ │ ├── .gitkeep │ │ │ │ ├── widgets │ │ │ │ │ ├── widget-1 │ │ │ │ │ │ └── item.hbs │ │ │ │ │ └── widget-2 │ │ │ │ │ │ └── stacked-chart.hbs │ │ │ │ ├── tracks │ │ │ │ │ └── table.css │ │ │ │ └── ui │ │ │ │ │ └── page.hbs │ │ │ ├── helpers │ │ │ │ └── .gitkeep │ │ │ ├── models │ │ │ │ └── .gitkeep │ │ │ ├── routes │ │ │ │ └── .gitkeep │ │ │ ├── controllers │ │ │ │ └── .gitkeep │ │ │ └── styles │ │ │ │ ├── index.css │ │ │ │ └── form.css │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ └── integration │ │ │ │ └── .gitkeep │ │ ├── .stylelintignore │ │ ├── .watchmanconfig │ │ ├── .stylelintrc.mjs │ │ ├── config │ │ │ ├── dependency-lint.js │ │ │ ├── optional-features.json │ │ │ └── targets.js │ │ ├── public │ │ │ ├── robots.txt │ │ │ ├── material-design-icons │ │ │ │ ├── stop.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ └── chevron-right.svg │ │ │ ├── assets │ │ │ │ └── favicon.png │ │ │ └── images │ │ │ │ └── widgets │ │ │ │ ├── widget-4 │ │ │ │ └── avatar.jpg │ │ │ │ └── widget-3 │ │ │ │ ├── venue-wide@1x.jpg │ │ │ │ ├── venue-square@1x.jpg │ │ │ │ └── venue-extra-wide@1x.jpg │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ └── .prettierignore │ │ ├── ember-container-query │ │ ├── src │ │ │ ├── .gitkeep │ │ │ └── styles │ │ │ │ └── container-query.css │ │ ├── .stylelintignore │ │ ├── .stylelintrc.mjs │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ ├── addon-main.cjs │ │ ├── .prettierignore │ │ ├── .gitignore │ │ └── unpublished-development-types │ │ │ └── index.d.ts │ │ ├── .netlifyredirects │ │ ├── pnpm-workspace.yaml │ │ ├── .npmrc │ │ └── .gitignore │ ├── ember-container-query-javascript │ ├── input │ │ ├── CHANGELOG.md │ │ ├── addon │ │ │ ├── .gitkeep │ │ │ └── styles │ │ │ │ └── container-query.css │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── helpers │ │ │ │ ├── height.js │ │ │ │ ├── width.js │ │ │ │ └── aspect-ratio.js │ │ │ ├── components │ │ │ │ └── container-query.js │ │ │ └── modifiers │ │ │ │ └── container-query.js │ │ ├── CONTRIBUTING.md │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ ├── integration │ │ │ │ └── .gitkeep │ │ │ └── dummy │ │ │ │ ├── app │ │ │ │ ├── helpers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ ├── routes │ │ │ │ │ ├── .gitkeep │ │ │ │ │ └── album.js │ │ │ │ ├── components │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── widgets │ │ │ │ │ │ ├── widget-1 │ │ │ │ │ │ │ └── item.hbs │ │ │ │ │ │ └── widget-2 │ │ │ │ │ │ │ └── stacked-chart.hbs │ │ │ │ │ ├── tracks │ │ │ │ │ │ └── table.css │ │ │ │ │ └── ui │ │ │ │ │ │ └── page.hbs │ │ │ │ ├── controllers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── styles │ │ │ │ │ ├── index.css │ │ │ │ │ └── form.css │ │ │ │ └── data │ │ │ │ │ └── music-revenue.js │ │ │ │ ├── config │ │ │ │ ├── dependency-lint.js │ │ │ │ └── optional-features.json │ │ │ │ └── public │ │ │ │ ├── robots.txt │ │ │ │ ├── material-design-icons │ │ │ │ ├── stop.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ └── chevron-left.svg │ │ │ │ ├── assets │ │ │ │ └── favicon.png │ │ │ │ └── images │ │ │ │ └── widgets │ │ │ │ ├── widget-4 │ │ │ │ └── avatar.jpg │ │ │ │ └── widget-3 │ │ │ │ ├── venue-wide@1x.jpg │ │ │ │ └── venue-square@1x.jpg │ │ ├── .netlifyredirects │ │ ├── .watchmanconfig │ │ └── index.js │ └── output │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── test-app │ │ ├── app │ │ │ ├── models │ │ │ │ └── .gitkeep │ │ │ ├── routes │ │ │ │ ├── .gitkeep │ │ │ │ └── album.js │ │ │ ├── components │ │ │ │ ├── .gitkeep │ │ │ │ ├── widgets │ │ │ │ │ ├── widget-1 │ │ │ │ │ │ └── item.hbs │ │ │ │ │ └── widget-2 │ │ │ │ │ │ └── stacked-chart.hbs │ │ │ │ ├── tracks │ │ │ │ │ └── table.css │ │ │ │ └── ui │ │ │ │ │ └── page.hbs │ │ │ ├── controllers │ │ │ │ └── .gitkeep │ │ │ ├── helpers │ │ │ │ └── .gitkeep │ │ │ ├── styles │ │ │ │ ├── index.css │ │ │ │ └── form.css │ │ │ └── data │ │ │ │ └── music-revenue.js │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ └── integration │ │ │ │ └── .gitkeep │ │ ├── .stylelintignore │ │ ├── .watchmanconfig │ │ ├── .stylelintrc.mjs │ │ ├── config │ │ │ ├── dependency-lint.js │ │ │ └── optional-features.json │ │ ├── public │ │ │ ├── robots.txt │ │ │ ├── material-design-icons │ │ │ │ ├── stop.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ └── chevron-right.svg │ │ │ ├── assets │ │ │ │ └── favicon.png │ │ │ └── images │ │ │ │ └── widgets │ │ │ │ ├── widget-4 │ │ │ │ └── avatar.jpg │ │ │ │ └── widget-3 │ │ │ │ ├── venue-square@1x.jpg │ │ │ │ ├── venue-wide@1x.jpg │ │ │ │ └── venue-extra-wide@1x.jpg │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ └── .prettierignore │ │ ├── ember-container-query │ │ ├── src │ │ │ ├── .gitkeep │ │ │ └── styles │ │ │ │ └── container-query.css │ │ ├── .stylelintignore │ │ ├── .stylelintrc.mjs │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ ├── addon-main.cjs │ │ ├── .prettierignore │ │ └── .gitignore │ │ ├── .netlifyredirects │ │ ├── pnpm-workspace.yaml │ │ ├── .npmrc │ │ └── .gitignore │ ├── ember-container-query-typescript │ ├── input │ │ ├── CHANGELOG.md │ │ ├── addon │ │ │ ├── .gitkeep │ │ │ └── styles │ │ │ │ └── container-query.css │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── helpers │ │ │ │ ├── height.js │ │ │ │ ├── width.js │ │ │ │ ├── cq-width.js │ │ │ │ ├── cq-height.js │ │ │ │ ├── aspect-ratio.js │ │ │ │ └── cq-aspect-ratio.js │ │ │ ├── components │ │ │ │ └── container-query.js │ │ │ └── modifiers │ │ │ │ └── container-query.js │ │ ├── CONTRIBUTING.md │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ ├── integration │ │ │ │ └── .gitkeep │ │ │ └── dummy │ │ │ │ ├── app │ │ │ │ ├── helpers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ ├── routes │ │ │ │ │ └── .gitkeep │ │ │ │ ├── components │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── widgets │ │ │ │ │ │ ├── widget-1 │ │ │ │ │ │ │ └── item.hbs │ │ │ │ │ │ └── widget-2 │ │ │ │ │ │ │ └── stacked-chart.hbs │ │ │ │ │ ├── tracks │ │ │ │ │ │ └── table.css │ │ │ │ │ └── ui │ │ │ │ │ │ └── page.hbs │ │ │ │ ├── controllers │ │ │ │ │ └── .gitkeep │ │ │ │ └── styles │ │ │ │ │ ├── index.css │ │ │ │ │ └── form.css │ │ │ │ ├── config │ │ │ │ ├── dependency-lint.js │ │ │ │ └── optional-features.json │ │ │ │ └── public │ │ │ │ ├── robots.txt │ │ │ │ ├── material-design-icons │ │ │ │ ├── stop.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ └── chevron-left.svg │ │ │ │ ├── assets │ │ │ │ └── favicon.png │ │ │ │ └── images │ │ │ │ └── widgets │ │ │ │ ├── widget-4 │ │ │ │ └── avatar.jpg │ │ │ │ └── widget-3 │ │ │ │ ├── venue-wide@1x.jpg │ │ │ │ └── venue-square@1x.jpg │ │ ├── types │ │ │ ├── dummy │ │ │ │ └── index.d.ts │ │ │ └── global.d.ts │ │ ├── .netlifyredirects │ │ ├── .watchmanconfig │ │ └── index.js │ └── output │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── test-app │ │ ├── app │ │ │ ├── models │ │ │ │ └── .gitkeep │ │ │ ├── routes │ │ │ │ └── .gitkeep │ │ │ ├── components │ │ │ │ ├── .gitkeep │ │ │ │ ├── widgets │ │ │ │ │ ├── widget-1 │ │ │ │ │ │ └── item.hbs │ │ │ │ │ └── widget-2 │ │ │ │ │ │ └── stacked-chart.hbs │ │ │ │ ├── tracks │ │ │ │ │ └── table.css │ │ │ │ └── ui │ │ │ │ │ └── page.hbs │ │ │ ├── controllers │ │ │ │ └── .gitkeep │ │ │ ├── helpers │ │ │ │ └── .gitkeep │ │ │ └── styles │ │ │ │ ├── index.css │ │ │ │ └── form.css │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ └── integration │ │ │ │ └── .gitkeep │ │ ├── types │ │ │ ├── global.d.ts │ │ │ └── test-app │ │ │ │ └── index.d.ts │ │ ├── .stylelintignore │ │ ├── .watchmanconfig │ │ ├── .stylelintrc.mjs │ │ ├── config │ │ │ ├── dependency-lint.js │ │ │ └── optional-features.json │ │ ├── public │ │ │ ├── robots.txt │ │ │ ├── material-design-icons │ │ │ │ ├── stop.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ └── chevron-right.svg │ │ │ ├── assets │ │ │ │ └── favicon.png │ │ │ └── images │ │ │ │ └── widgets │ │ │ │ ├── widget-4 │ │ │ │ └── avatar.jpg │ │ │ │ └── widget-3 │ │ │ │ ├── venue-square@1x.jpg │ │ │ │ ├── venue-wide@1x.jpg │ │ │ │ └── venue-extra-wide@1x.jpg │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ └── .prettierignore │ │ ├── ember-container-query │ │ ├── src │ │ │ ├── .gitkeep │ │ │ └── styles │ │ │ │ └── container-query.css │ │ ├── .stylelintignore │ │ ├── .stylelintrc.mjs │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ ├── addon-main.cjs │ │ ├── .prettierignore │ │ └── .gitignore │ │ ├── .netlifyredirects │ │ ├── pnpm-workspace.yaml │ │ ├── .npmrc │ │ └── .gitignore │ ├── ember-container-query-customizations │ ├── input │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── addon │ │ │ ├── .gitkeep │ │ │ └── styles │ │ │ │ └── container-query.css │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── helpers │ │ │ │ ├── height.js │ │ │ │ ├── width.js │ │ │ │ ├── cq-height.js │ │ │ │ ├── cq-width.js │ │ │ │ ├── aspect-ratio.js │ │ │ │ └── cq-aspect-ratio.js │ │ │ ├── components │ │ │ │ └── container-query.js │ │ │ └── modifiers │ │ │ │ └── container-query.js │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ ├── integration │ │ │ │ └── .gitkeep │ │ │ └── dummy │ │ │ │ ├── app │ │ │ │ ├── components │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── widgets │ │ │ │ │ │ ├── widget-1 │ │ │ │ │ │ │ └── item.hbs │ │ │ │ │ │ └── widget-2 │ │ │ │ │ │ │ └── stacked-chart.hbs │ │ │ │ │ ├── tracks │ │ │ │ │ │ └── table.css │ │ │ │ │ └── ui │ │ │ │ │ │ └── page.hbs │ │ │ │ ├── helpers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ ├── routes │ │ │ │ │ └── .gitkeep │ │ │ │ ├── controllers │ │ │ │ │ └── .gitkeep │ │ │ │ └── styles │ │ │ │ │ ├── index.css │ │ │ │ │ └── form.css │ │ │ │ ├── config │ │ │ │ ├── dependency-lint.js │ │ │ │ └── optional-features.json │ │ │ │ └── public │ │ │ │ ├── robots.txt │ │ │ │ ├── material-design-icons │ │ │ │ ├── stop.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ └── chevron-right.svg │ │ │ │ ├── assets │ │ │ │ └── favicon.png │ │ │ │ └── images │ │ │ │ └── widgets │ │ │ │ ├── widget-4 │ │ │ │ └── avatar.jpg │ │ │ │ └── widget-3 │ │ │ │ └── venue-wide@1x.jpg │ │ ├── .netlifyredirects │ │ ├── .watchmanconfig │ │ └── index.js │ └── output │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── demo-app │ │ ├── app │ │ │ ├── helpers │ │ │ │ └── .gitkeep │ │ │ ├── models │ │ │ │ └── .gitkeep │ │ │ ├── routes │ │ │ │ └── .gitkeep │ │ │ ├── components │ │ │ │ ├── .gitkeep │ │ │ │ ├── widgets │ │ │ │ │ ├── widget-1 │ │ │ │ │ │ └── item.hbs │ │ │ │ │ └── widget-2 │ │ │ │ │ │ └── stacked-chart.hbs │ │ │ │ ├── tracks │ │ │ │ │ └── table.css │ │ │ │ └── ui │ │ │ │ │ └── page.hbs │ │ │ ├── controllers │ │ │ │ └── .gitkeep │ │ │ └── styles │ │ │ │ ├── index.css │ │ │ │ └── form.css │ │ ├── tests │ │ │ ├── unit │ │ │ │ └── .gitkeep │ │ │ └── integration │ │ │ │ └── .gitkeep │ │ ├── types │ │ │ └── global.d.ts │ │ ├── .stylelintignore │ │ ├── .watchmanconfig │ │ ├── public │ │ │ ├── robots.txt │ │ │ ├── material-design-icons │ │ │ │ ├── stop.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ └── chevron-right.svg │ │ │ ├── assets │ │ │ │ └── favicon.png │ │ │ └── images │ │ │ │ └── widgets │ │ │ │ ├── widget-4 │ │ │ │ └── avatar.jpg │ │ │ │ └── widget-3 │ │ │ │ ├── venue-wide@1x.jpg │ │ │ │ └── venue-square@1x.jpg │ │ ├── .stylelintrc.mjs │ │ ├── config │ │ │ ├── dependency-lint.js │ │ │ └── optional-features.json │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ └── .prettierignore │ │ ├── .netlifyredirects │ │ ├── packages │ │ └── ember-container-query │ │ │ ├── src │ │ │ ├── .gitkeep │ │ │ └── styles │ │ │ │ └── container-query.css │ │ │ ├── .stylelintignore │ │ │ ├── .stylelintrc.mjs │ │ │ ├── prettier.config.mjs │ │ │ ├── eslint.config.mjs │ │ │ ├── .template-lintrc.cjs │ │ │ ├── addon-main.cjs │ │ │ ├── .prettierignore │ │ │ └── .gitignore │ │ ├── pnpm-workspace.yaml │ │ ├── .npmrc │ │ └── .gitignore │ └── steps │ └── update-addon-package-json │ ├── public-assets │ ├── input │ │ └── ember-container-query │ │ │ └── public │ │ │ └── assets │ │ │ ├── documents │ │ │ └── some-file.pdf │ │ │ └── images │ │ │ └── v1 │ │ │ └── some-file.svg │ └── output │ │ └── ember-container-query │ │ └── public │ │ └── assets │ │ ├── documents │ │ └── some-file.pdf │ │ └── images │ │ └── v1 │ │ └── some-file.svg │ └── blueprints │ ├── input │ └── ember-container-query │ │ └── blueprints │ │ └── some-command │ │ ├── files │ │ └── some-folder │ │ │ └── some-file.ts │ │ └── index.js │ └── output │ └── ember-container-query │ └── blueprints │ └── some-command │ ├── files │ └── some-folder │ │ └── some-file.ts │ └── index.js ├── src ├── blueprints │ └── ember-addon │ │ ├── __testAppLocation__ │ │ ├── types │ │ │ └── global.d.ts │ │ ├── .stylelintignore │ │ ├── .stylelintrc.mjs │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ ├── .prettierignore │ │ └── __gitignore__ │ │ ├── __addonLocation__ │ │ ├── .stylelintignore │ │ ├── .stylelintrc.mjs │ │ ├── prettier.config.mjs │ │ ├── eslint.config.mjs │ │ ├── .template-lintrc.cjs │ │ ├── addon-main.cjs │ │ ├── .prettierignore │ │ ├── __gitignore__ │ │ └── unpublished-development-types │ │ │ └── index.d.ts │ │ ├── pnpm-workspace.yaml │ │ ├── __npmrc__ │ │ └── __gitignore__ ├── utils │ ├── blueprints.ts │ └── blueprints │ │ └── blueprints-root.ts └── steps │ ├── update-addon-package-json │ └── index.ts │ └── update-test-app-package-json │ └── index.ts ├── prettier.config.mjs ├── .changeset └── formatter.mjs ├── .gitignore └── .prettierignore /tests/fixtures/hello-world/input/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/types/dummy/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/hello-world/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/types/global.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/blueprints/ember-addon/__testAppLocation__/types/global.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/types/test-app/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/new-v1-addon/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/types/dummy/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/new-v1-addon/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/types/dummy/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/new-v1-addon/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/new-v1-addon/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/types/global.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/types/global.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/types/global.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/types/dummy/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/types/global.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/types/global.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/packages/new-v1-addon/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/types/test-app/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/types/global.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/ember-container-query/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/ember-container-query/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/packages/new-v1-addon/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/node'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/.netlifyredirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/.netlifyredirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/ember-container-query/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/.netlifyredirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/.netlifyredirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/ember-container-query/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/types/test-app/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist/ 3 | -------------------------------------------------------------------------------- /src/blueprints/ember-addon/__testAppLocation__/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist/ 3 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/.netlifyredirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/.netlifyredirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/.netlifyredirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/.netlifyredirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/.netlifyredirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/.netlifyredirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/packages/ember-container-query/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/addon-test-support/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components/hello'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/types/demo-app-for-new-v1-addon/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist/ 3 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/hello-world/src/test-support.ts: -------------------------------------------------------------------------------- 1 | export * from './components/hello'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - 'hello-world' 3 | - 'test-app' 4 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist/ 3 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist/ 3 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist/ 3 | -------------------------------------------------------------------------------- /src/blueprints/ember-addon/__addonLocation__/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /declarations/ 3 | /dist/ 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist/ 3 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist/ 3 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist/ 3 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist/ 3 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/app/components/hello.js: -------------------------------------------------------------------------------- 1 | export { default } from 'hello-world/components/hello'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/hello-world/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /declarations/ 3 | /dist/ 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - 'new-v1-addon' 3 | - 'test-app' 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - 'new-v1-addon' 3 | - 'test-app' 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /src/blueprints/ember-addon/__addonLocation__/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /src/utils/blueprints.ts: -------------------------------------------------------------------------------- 1 | export * from './blueprints/blueprints-root.js'; 2 | export * from './blueprints/get-version.js'; 3 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/app/styles/index.css: -------------------------------------------------------------------------------- 1 | .code { 2 | font-family: monospace; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/app/styles/index.css: -------------------------------------------------------------------------------- 1 | .code { 2 | font-family: monospace; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/.prettierrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | singleQuote: true, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/hello-world/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/new-v1-addon/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /declarations/ 3 | /dist/ 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/new-v1-addon/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /declarations/ 3 | /dist/ 4 | -------------------------------------------------------------------------------- /tests/fixtures/steps/update-addon-package-json/public-assets/input/ember-container-query/public/assets/documents/some-file.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/steps/update-addon-package-json/public-assets/input/ember-container-query/public/assets/images/v1/some-file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/steps/update-addon-package-json/public-assets/output/ember-container-query/public/assets/documents/some-file.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/steps/update-addon-package-json/public-assets/output/ember-container-query/public/assets/images/v1/some-file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/blueprints/ember-addon/__testAppLocation__/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/tests/dummy/app/styles/index.css: -------------------------------------------------------------------------------- 1 | .code { 2 | font-family: monospace; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/app/styles/index.css: -------------------------------------------------------------------------------- 1 | .code { 2 | font-family: monospace; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/tests/dummy/app/styles/index.css: -------------------------------------------------------------------------------- 1 | .code { 2 | font-family: monospace; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/app/styles/index.css: -------------------------------------------------------------------------------- 1 | .code { 2 | font-family: monospace; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /src/blueprints/ember-addon/__addonLocation__/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /src/blueprints/ember-addon/__testAppLocation__/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/tests/dummy/app/styles/index.css: -------------------------------------------------------------------------------- 1 | .code { 2 | font-family: monospace; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/app/styles/index.css: -------------------------------------------------------------------------------- 1 | .code { 2 | font-family: monospace; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/app/helpers/height.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/height'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/app/helpers/width.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/width'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - 'ember-container-query' 3 | - 'test-app' 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/tests/dummy/app/styles/index.css: -------------------------------------------------------------------------------- 1 | .code { 2 | font-family: monospace; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - 'ember-container-query' 3 | - 'test-app' 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/tests/dummy/app/styles/index.css: -------------------------------------------------------------------------------- 1 | .code { 2 | font-family: monospace; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended', 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/hello-world/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - 'packages/new-v1-addon' 3 | - 'demo-app' 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/.prettierrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | singleQuote: true, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/.prettierrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | singleQuote: true, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/app/helpers/cq-width.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/cq-width'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/tests/dummy/config/dependency-lint.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | allowedVersions: {}, 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/ember-container-query/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /declarations/ 3 | /dist/ 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/config/dependency-lint.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | allowedVersions: {}, 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/app/helpers/height.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/height'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/app/helpers/width.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/width'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - 'ember-container-query' 3 | - 'test-app' 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/ember-container-query/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /declarations/ 3 | /dist/ 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/config/dependency-lint.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | allowedVersions: {}, 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/app/helpers/height.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/height'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/app/helpers/width.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/width'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - 'ember-container-query' 3 | - 'test-app' 4 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/test-app/eslint.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/eslint-config-ember/v1-app'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/.prettierrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | singleQuote: true, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/packages/new-v1-addon/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /declarations/ 3 | /dist/ 4 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/new-v1-addon/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/new-v1-addon/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/steps/update-addon-package-json/blueprints/input/ember-container-query/blueprints/some-command/files/some-folder/some-file.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/steps/update-addon-package-json/blueprints/output/ember-container-query/blueprints/some-command/files/some-folder/some-file.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/blueprints/ember-addon/__addonLocation__/eslint.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/eslint-config-ember/v2-addon'; 2 | -------------------------------------------------------------------------------- /src/blueprints/ember-addon/__testAppLocation__/eslint.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/eslint-config-ember/v1-app'; 2 | -------------------------------------------------------------------------------- /src/blueprints/ember-addon/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - '<%= options.locations.addon %>' 3 | - '<%= options.locations.testApp %>' 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/app/helpers/height.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/height'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/app/helpers/width.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/width'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/addon/styles/container-query.css: -------------------------------------------------------------------------------- 1 | .container-query { 2 | height: 100%; 3 | width: 100%; 4 | } -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/app/helpers/cq-height.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/cq-height'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/tests/dummy/config/dependency-lint.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | allowedVersions: {}, 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/ember-container-query/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /declarations/ 3 | /dist/ 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/config/dependency-lint.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | allowedVersions: {}, 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/addon/styles/container-query.css: -------------------------------------------------------------------------------- 1 | .container-query { 2 | height: 100%; 3 | width: 100%; 4 | } -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/app/helpers/height.js: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2/ember-container-query/helpers/height'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/app/helpers/width.js: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2/ember-container-query/helpers/width'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/tests/dummy/config/dependency-lint.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | allowedVersions: {}, 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/app/helpers/cq-width.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/cq-width'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/tests/dummy/config/dependency-lint.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | allowedVersions: {}, 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/ember-container-query/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /declarations/ 3 | /dist/ 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/config/dependency-lint.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | allowedVersions: {}, 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/output/hello-world/eslint.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/eslint-config-ember/v2-addon'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended', 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/input/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended', 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/input/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/addon/styles/container-query.css: -------------------------------------------------------------------------------- 1 | .container-query { 2 | height: 100%; 3 | width: 100%; 4 | } -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/app/helpers/cq-height.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/cq-height'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/app/helpers/cq-width.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/cq-width'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/tests/dummy/config/dependency-lint.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | allowedVersions: {}, 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/config/dependency-lint.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | allowedVersions: {}, 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - 'packages/ember-container-query' 3 | - 'demo-app' 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/app/helpers/aspect-ratio.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/aspect-ratio'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/addon/styles/container-query.css: -------------------------------------------------------------------------------- 1 | .container-query { 2 | height: 100%; 3 | width: 100%; 4 | } -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/app/helpers/cq-height.js: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2/ember-container-query/helpers/cq-height'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/app/helpers/cq-width.js: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2/ember-container-query/helpers/cq-width'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/addon/styles/container-query.css: -------------------------------------------------------------------------------- 1 | .container-query { 2 | height: 100%; 3 | width: 100%; 4 | } -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/app/helpers/cq-height.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/cq-height'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended', 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/input/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/demo-app/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/new-v1-addon/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/new-v1-addon/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/demo-app/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/output/packages/ember-container-query/.stylelintignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /declarations/ 3 | /dist/ 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/app/helpers/cq-aspect-ratio.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/cq-aspect-ratio'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/ember-container-query/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/app/helpers/aspect-ratio.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/aspect-ratio'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/input/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/test-app/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/ember-container-query/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/app/helpers/aspect-ratio.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/aspect-ratio'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/test-app/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/addon/components/hello.css: -------------------------------------------------------------------------------- 1 | .container { 2 | /* Do something */ 3 | } 4 | 5 | .image { 6 | /* Do something */ 7 | } 8 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-customizations/output/packages/new-v1-addon/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-javascript/output/test-app/eslint.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/eslint-config-ember/v1-app'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/new-v1-addon-typescript/output/test-app/eslint.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/eslint-config-ember/v1-app'; 2 | -------------------------------------------------------------------------------- /.changeset/formatter.mjs: -------------------------------------------------------------------------------- 1 | import getFormatter from '@ijlee2-frontend-configs/changesets'; 2 | 3 | export default getFormatter('ijlee2/ember-codemod-v1-to-v2'); 4 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-customizations/input/app/helpers/aspect-ratio.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/aspect-ratio'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/app/components/container-query.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/components/container-query'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/input/app/modifiers/container-query.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/modifiers/container-query'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/ember-container-query/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-glint/output/test-app/eslint.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/eslint-config-ember/v1-app'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-javascript/output/ember-container-query/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/input/app/helpers/aspect-ratio.js: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2/ember-container-query/helpers/aspect-ratio'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/ember-container-query/prettier.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/prettier/ember'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-scoped/output/test-app/eslint.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/eslint-config-ember/v1-app'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/input/app/helpers/cq-aspect-ratio.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-container-query/helpers/cq-aspect-ratio'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/ember-container-query-typescript/output/ember-container-query/.stylelintrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@ijlee2-frontend-configs/stylelint'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hello-world/input/tests/dummy/app/templates/application.hbs: -------------------------------------------------------------------------------- 1 | {{page-title "Dummy"}} 2 | 3 |
3 | {{@title}} 4 |
5 |3 | {{@title}} 4 |
5 |3 | {{@title}} 4 |
5 |3 | {{@title}} 4 |
5 |3 | {{@title}} 4 |
5 |3 | {{@title}} 4 |
5 |3 | {{@title}} 4 |
5 |3 | {{@title}} 4 |
5 |3 | {{@title}} 4 |
5 |3 | {{@title}} 4 |
5 |
9 |
9 |