├── .editorconfig ├── .github ├── renovate.json5 └── workflows │ ├── ci.yml │ ├── fixture-tests.yml │ ├── plan-release.yml │ └── publish.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── .release-plan.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── RELEASE.md ├── config └── ember-cli-update.json ├── docs ├── architecture-overview.md ├── css-isolation.md └── lint-rules.md ├── ember-scoped-css ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── addon-main.cjs ├── classic-app-support │ └── helpers │ │ └── scoped-class.js ├── eslint.config.mjs ├── package.json ├── pnpm-lock.yaml ├── src │ ├── build │ │ ├── babel-plugin.js │ │ ├── public-exports │ │ │ ├── all.js │ │ │ ├── babel.js │ │ │ ├── rollup.js │ │ │ └── vite.js │ │ ├── scoped-css-unplugin.js │ │ ├── template-plugin.js │ │ ├── template-plugin.test.ts │ │ ├── unplugin-colocated.js │ │ └── unplugin-inline.js │ ├── lib │ │ ├── css │ │ │ ├── rewrite.js │ │ │ ├── rewrite.test.ts │ │ │ └── utils.js │ │ ├── path │ │ │ ├── const.js │ │ │ ├── hash-from-absolute-path.js │ │ │ ├── hash-from-absolute-path.test.ts │ │ │ ├── hash-from-module-path.js │ │ │ ├── md5.js │ │ │ ├── template-transform-paths.js │ │ │ ├── template-transform-paths.test.ts │ │ │ ├── utils.appPath.test.ts │ │ │ ├── utils.findWorkspacePath.test.ts │ │ │ ├── utils.hashFrom.test.ts │ │ │ ├── utils.isRelevantFile.test.ts │ │ │ ├── utils.js │ │ │ └── utils.paths.test.ts │ │ ├── renameClass.js │ │ ├── request.js │ │ └── rewriteHbs.js │ ├── noop.js │ ├── runtime │ │ ├── index.ts │ │ └── test-support.ts │ └── template-lint │ │ └── plugin.js ├── template-registry.d.ts ├── tsconfig.json ├── tsdown.config.mjs └── vitest.config.mts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── stylelint-ember-scoped-css ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── LICENSE.md ├── README.md ├── eslint.config.mjs ├── package.json ├── pnpm-lock.yaml ├── src │ ├── config.js │ ├── index.js │ ├── rules │ │ └── no-unscoped-selectors │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── index.test.ts │ └── utils │ │ ├── buildDisplaySelector.js │ │ └── buildDisplaySelector.test.ts └── tsconfig.json └── test-apps ├── v2-addon-bundled ├── .editorconfig ├── .env.development ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── .template-lintrc.cjs ├── .try.mjs ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── addon-main.cjs ├── babel.config.mjs ├── babel.publish.config.mjs ├── config │ └── ember-cli-update.json ├── eslint.config.mjs ├── package.json ├── pnpm-lock.yaml ├── rollup.config.mjs ├── src │ ├── components │ │ ├── from-direct │ │ │ ├── example.css │ │ │ └── example.gts │ │ └── from-virtual │ │ │ ├── example.css │ │ │ └── example.gts │ ├── direct.ts │ └── index.ts ├── testem.cjs ├── tests │ ├── index.html │ ├── rendering-test.gts │ └── test-helper.ts ├── tsconfig.json ├── tsconfig.publish.json ├── unpublished-development-types │ └── index.d.ts └── vite.config.mjs ├── v2-addon-layer ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── .template-lintrc.cjs ├── addon-main.cjs ├── babel.config.mjs ├── eslint.config.mjs ├── fixtures │ └── expected-dist │ │ └── components │ │ ├── alert.css │ │ ├── alert.js │ │ ├── at-class │ │ ├── component-at-class.css │ │ ├── component-at-class.js │ │ ├── component-at-class.js.map │ │ ├── has-at-class.js │ │ └── has-at-class.js.map │ │ ├── footer.css │ │ ├── footer.js │ │ ├── header.js │ │ ├── inline-css-a429dce1a164746b7f8ad15dc067290e.css │ │ ├── inline-css-d542ca65446c00a9a005e6e4fe7e0bbc.css │ │ ├── inline.js │ │ ├── time.css │ │ └── time.js ├── package.json ├── pnpm-lock.yaml ├── rollup.config.mjs ├── src │ ├── components │ │ ├── alert.css │ │ ├── alert.gjs │ │ ├── at-class │ │ │ ├── component-at-class.css │ │ │ ├── component-at-class.gjs │ │ │ └── has-at-class.gjs │ │ ├── footer.css │ │ ├── footer.gjs │ │ ├── header.gjs │ │ ├── inline.gts │ │ ├── time.css │ │ └── time.gts │ └── index.js └── tsconfig.json ├── v2-addon-ts-glint-2 ├── .editorconfig ├── .env.development ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── .template-lintrc.cjs ├── .try.mjs ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── addon-main.cjs ├── babel.config.mjs ├── babel.publish.config.mjs ├── config │ └── ember-cli-update.json ├── demo-app │ ├── app.gts │ ├── styles.css │ └── templates │ │ └── application.gts ├── eslint.config.mjs ├── index.html ├── package.json ├── pnpm-lock.yaml ├── rollup.config.mjs ├── src │ ├── components │ │ └── glint-v2.gts │ ├── index.js │ ├── index.ts │ └── template-registry.ts ├── testem.cjs ├── tests │ ├── index.html │ ├── test-helper.js │ └── test-helper.ts ├── tsconfig.json ├── tsconfig.publish.json ├── unpublished-development-types │ └── index.d.ts └── vite.config.mjs ├── v2-addon-ts-with-cjs-babel ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── .template-lintrc.cjs ├── addon-main.cjs ├── babel.config.cjs ├── eslint.config.mjs ├── fixtures │ └── expected-dist │ │ └── components │ │ └── issue-368 │ │ ├── scoped-usage-in-class-css-afd67848cb3760288f86391a08dac515.css │ │ ├── scoped-usage-in-class.js │ │ ├── to-css-f9baf4c7e4d6a08d3b6a33ca63a397b5.css │ │ └── to.js ├── package.json ├── pnpm-lock.yaml ├── rollup.config.mjs ├── src │ ├── components │ │ └── issue-368 │ │ │ ├── scoped-usage-in-class.gts │ │ │ └── to.gts │ └── index.ts ├── tsconfig.json └── unpublished-development-types │ └── index.d.ts ├── v2-addon-ts ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── .template-lintrc.cjs ├── addon-main.cjs ├── babel.config.mjs ├── eslint.config.mjs ├── fixtures │ └── expected-dist │ │ └── components │ │ ├── strict-class.css │ │ ├── strict-class.js │ │ ├── strict.css │ │ ├── strict.js │ │ ├── with-a-class.css │ │ └── with-a-class.js ├── package.json ├── pnpm-lock.yaml ├── rollup.config.mjs ├── src │ ├── components │ │ ├── at-class-ts │ │ │ ├── at-class-more-complex.css │ │ │ ├── at-class-more-complex.gts │ │ │ ├── component-at-class.css │ │ │ ├── component-at-class.gts │ │ │ └── has-at-class.gts │ │ ├── issue-368 │ │ │ ├── scoped-usage-in-class.gts │ │ │ └── to.gts │ │ ├── strict-class.css │ │ ├── strict-class.gts │ │ ├── strict.css │ │ ├── strict.gts │ │ ├── with-a-class.css │ │ └── with-a-class.gts │ └── index.ts ├── tsconfig.json └── unpublished-development-types │ └── index.d.ts ├── v2-addon ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── .template-lintrc.cjs ├── addon-main.cjs ├── babel.config.mjs ├── eslint.config.mjs ├── fixtures │ └── expected-dist │ │ └── components │ │ ├── alert.css │ │ ├── alert.js │ │ ├── footer.css │ │ ├── footer.js │ │ ├── header.js │ │ ├── inline-css-a429dce1a164746b7f8ad15dc067290e.css │ │ ├── inline-css-d542ca65446c00a9a005e6e4fe7e0bbc.css │ │ ├── inline.js │ │ ├── time.css │ │ └── time.js ├── package.json ├── pnpm-lock.yaml ├── rollup.config.mjs ├── src │ ├── components │ │ ├── alert.css │ │ ├── alert.gjs │ │ ├── at-class │ │ │ ├── component-at-class.css │ │ │ ├── component-at-class.gjs │ │ │ └── has-at-class.gjs │ │ ├── footer.css │ │ ├── footer.gjs │ │ ├── header.gjs │ │ ├── inline.gts │ │ ├── time.css │ │ └── time.gts │ └── index.js └── tsconfig.json ├── vite-app-layer ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── .template-lintrc.cjs ├── babel.config.mjs ├── config │ ├── optional-features.json │ └── targets.cjs ├── eslint.config.mjs ├── fixtures │ └── expected-dist │ │ └── assets │ │ └── main-DzSMgB_c.css ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src │ ├── app.js │ ├── components │ │ ├── forth.css │ │ ├── forth.gjs │ │ ├── in-app │ │ │ ├── at-class-ts │ │ │ │ ├── calls-has-at-class.css │ │ │ │ ├── calls-has-at-class.gts │ │ │ │ └── has-at-class.gts │ │ │ ├── basic.css │ │ │ ├── basic.gts │ │ │ └── scoped.gjs │ │ ├── third.gjs │ │ └── with-class.gjs │ ├── config.js │ ├── registry.js │ ├── router.js │ └── templates │ │ └── application.gjs ├── testem.cjs ├── tests │ ├── from-v2-addon-ts │ │ └── strict-class-test.gts │ ├── from-v2-addon │ │ └── inline-test.gts │ ├── in-app │ │ ├── at-class-test.gts │ │ ├── basic-test.gts │ │ └── scoped-test.gjs │ ├── index.html │ └── test-helper.js └── vite.config.mjs ├── vite-app-with-compat-pods ├── .editorconfig ├── .ember-cli ├── .env.test ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── .stylelintignore ├── .stylelintrc.cjs ├── .template-lintrc.cjs ├── .watchmanconfig ├── README.md ├── app │ ├── app.ts │ ├── components │ │ └── .gitkeep │ ├── config │ │ └── environment.ts │ ├── controllers │ │ └── .gitkeep │ ├── deprecation-workflow.ts │ ├── helpers │ │ └── .gitkeep │ ├── models │ │ └── .gitkeep │ ├── pods │ │ ├── another │ │ │ ├── styles.css │ │ │ └── template.gjs │ │ ├── application │ │ │ ├── styles.css │ │ │ └── template.hbs │ │ └── top-level │ │ │ ├── styles.css │ │ │ └── template.hbs │ ├── router.ts │ ├── routes │ │ └── .gitkeep │ └── styles │ │ └── app.css ├── babel.config.mjs ├── config │ ├── ember-cli-update.json │ ├── environment.js │ ├── optional-features.json │ └── targets.cjs ├── ember-cli-build.cjs ├── eslint.config.mjs ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public │ └── robots.txt ├── testem.cjs ├── tests │ ├── index.html │ ├── pods │ │ ├── another-test.ts │ │ ├── application-test.ts │ │ └── top-level-test.ts │ └── test-helper.ts ├── tsconfig.json └── vite.config.mjs ├── vite-app-with-compat ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── .template-lintrc.cjs ├── babel.config.mjs ├── config │ ├── optional-features.json │ └── targets.cjs ├── ember-cli-build.cjs ├── eslint.config.mjs ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src │ ├── app.js │ ├── components │ │ ├── forth.css │ │ ├── forth.gjs │ │ ├── in-app │ │ │ ├── at-class-ts │ │ │ │ ├── calls-has-at-class.css │ │ │ │ ├── calls-has-at-class.gts │ │ │ │ └── has-at-class.gts │ │ │ ├── basic.css │ │ │ ├── basic.gts │ │ │ ├── legacy-co-located-js.css │ │ │ ├── legacy-co-located-js.hbs │ │ │ ├── legacy-co-located-js.js │ │ │ ├── legacy-co-located.css │ │ │ ├── legacy-co-located.hbs │ │ │ ├── legacy-co-located.ts │ │ │ ├── legacy-conditional.css │ │ │ ├── legacy-conditional.hbs │ │ │ ├── legacy.css │ │ │ └── legacy.hbs │ │ ├── third.gjs │ │ └── with-class.gjs │ ├── config.js │ ├── registry.js │ └── router.js ├── testem.cjs ├── tests │ ├── from-v2-addon-ts │ │ └── strict-class-test.gts │ ├── in-app │ │ ├── at-class-test.gts │ │ ├── basic-test.gts │ │ ├── legacy-co-located-js-test.gts │ │ ├── legacy-co-located-test.gts │ │ ├── legacy-conditional-test.gts │ │ └── legacy-test.gts │ ├── index.html │ └── test-helper.js ├── tsconfig.json └── vite.config.mjs └── vite-app ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── .template-lintrc.cjs ├── babel.config.mjs ├── config ├── optional-features.json └── targets.cjs ├── eslint.config.mjs ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── app.js ├── components │ ├── forth.css │ ├── forth.gjs │ ├── in-app │ │ ├── at-class-ts │ │ │ ├── calls-has-at-class.css │ │ │ ├── calls-has-at-class.gts │ │ │ └── has-at-class.gts │ │ ├── basic.css │ │ ├── basic.gts │ │ └── scoped.gjs │ ├── scoped-class.gts │ ├── third.gjs │ └── with-class.gjs ├── config.js ├── registry.js ├── router.js └── templates │ └── application.gjs ├── testem.cjs ├── tests ├── from-v2-addon-ts │ └── strict-class-test.gts ├── from-v2-addon │ └── inline-test.gts ├── in-app │ ├── at-class-test.gts │ ├── basic-test.gts │ ├── scoped-class-transform-test.ts │ └── scoped-test.gjs ├── index.html └── test-helper.js └── vite.config.mjs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/fixture-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/.github/workflows/fixture-tests.yml -------------------------------------------------------------------------------- /.github/workflows/plan-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/.github/workflows/plan-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | singleQuote: true, 5 | }; 6 | -------------------------------------------------------------------------------- /.release-plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/.release-plan.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | ember-scoped-css/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ember-scoped-css/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/RELEASE.md -------------------------------------------------------------------------------- /config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/config/ember-cli-update.json -------------------------------------------------------------------------------- /docs/architecture-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/docs/architecture-overview.md -------------------------------------------------------------------------------- /docs/css-isolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/docs/css-isolation.md -------------------------------------------------------------------------------- /docs/lint-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/docs/lint-rules.md -------------------------------------------------------------------------------- /ember-scoped-css/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | declarations/ 3 | -------------------------------------------------------------------------------- /ember-scoped-css/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/.prettierignore -------------------------------------------------------------------------------- /ember-scoped-css/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/.prettierrc.cjs -------------------------------------------------------------------------------- /ember-scoped-css/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/CHANGELOG.md -------------------------------------------------------------------------------- /ember-scoped-css/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/LICENSE.md -------------------------------------------------------------------------------- /ember-scoped-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/README.md -------------------------------------------------------------------------------- /ember-scoped-css/addon-main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/addon-main.cjs -------------------------------------------------------------------------------- /ember-scoped-css/classic-app-support/helpers/scoped-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/classic-app-support/helpers/scoped-class.js -------------------------------------------------------------------------------- /ember-scoped-css/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/eslint.config.mjs -------------------------------------------------------------------------------- /ember-scoped-css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/package.json -------------------------------------------------------------------------------- /ember-scoped-css/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/pnpm-lock.yaml -------------------------------------------------------------------------------- /ember-scoped-css/src/build/babel-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/build/babel-plugin.js -------------------------------------------------------------------------------- /ember-scoped-css/src/build/public-exports/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/build/public-exports/all.js -------------------------------------------------------------------------------- /ember-scoped-css/src/build/public-exports/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/build/public-exports/babel.js -------------------------------------------------------------------------------- /ember-scoped-css/src/build/public-exports/rollup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/build/public-exports/rollup.js -------------------------------------------------------------------------------- /ember-scoped-css/src/build/public-exports/vite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/build/public-exports/vite.js -------------------------------------------------------------------------------- /ember-scoped-css/src/build/scoped-css-unplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/build/scoped-css-unplugin.js -------------------------------------------------------------------------------- /ember-scoped-css/src/build/template-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/build/template-plugin.js -------------------------------------------------------------------------------- /ember-scoped-css/src/build/template-plugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/build/template-plugin.test.ts -------------------------------------------------------------------------------- /ember-scoped-css/src/build/unplugin-colocated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/build/unplugin-colocated.js -------------------------------------------------------------------------------- /ember-scoped-css/src/build/unplugin-inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/build/unplugin-inline.js -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/css/rewrite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/css/rewrite.js -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/css/rewrite.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/css/rewrite.test.ts -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/css/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/css/utils.js -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/path/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/path/const.js -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/path/hash-from-absolute-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/path/hash-from-absolute-path.js -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/path/hash-from-absolute-path.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/path/hash-from-absolute-path.test.ts -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/path/hash-from-module-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/path/hash-from-module-path.js -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/path/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/path/md5.js -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/path/template-transform-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/path/template-transform-paths.js -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/path/template-transform-paths.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/path/template-transform-paths.test.ts -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/path/utils.appPath.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/path/utils.appPath.test.ts -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/path/utils.findWorkspacePath.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/path/utils.findWorkspacePath.test.ts -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/path/utils.hashFrom.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/path/utils.hashFrom.test.ts -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/path/utils.isRelevantFile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/path/utils.isRelevantFile.test.ts -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/path/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/path/utils.js -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/path/utils.paths.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/path/utils.paths.test.ts -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/renameClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/renameClass.js -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/request.js -------------------------------------------------------------------------------- /ember-scoped-css/src/lib/rewriteHbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/lib/rewriteHbs.js -------------------------------------------------------------------------------- /ember-scoped-css/src/noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/noop.js -------------------------------------------------------------------------------- /ember-scoped-css/src/runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/runtime/index.ts -------------------------------------------------------------------------------- /ember-scoped-css/src/runtime/test-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/runtime/test-support.ts -------------------------------------------------------------------------------- /ember-scoped-css/src/template-lint/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/src/template-lint/plugin.js -------------------------------------------------------------------------------- /ember-scoped-css/template-registry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/template-registry.d.ts -------------------------------------------------------------------------------- /ember-scoped-css/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/tsconfig.json -------------------------------------------------------------------------------- /ember-scoped-css/tsdown.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/tsdown.config.mjs -------------------------------------------------------------------------------- /ember-scoped-css/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/ember-scoped-css/vitest.config.mts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/.prettierignore -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/.prettierrc.cjs -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/LICENSE.md -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/README.md -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/eslint.config.mjs -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/package.json -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/pnpm-lock.yaml -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/src/config.js -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/src/index.js -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/src/rules/no-unscoped-selectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/src/rules/no-unscoped-selectors/README.md -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/src/rules/no-unscoped-selectors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/src/rules/no-unscoped-selectors/index.js -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/src/rules/no-unscoped-selectors/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/src/rules/no-unscoped-selectors/index.test.ts -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/src/utils/buildDisplaySelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/src/utils/buildDisplaySelector.js -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/src/utils/buildDisplaySelector.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/src/utils/buildDisplaySelector.test.ts -------------------------------------------------------------------------------- /stylelint-ember-scoped-css/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/stylelint-ember-scoped-css/tsconfig.json -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/.editorconfig -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/.env.development -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/.gitignore -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/.prettierignore -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/.prettierrc.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/.template-lintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/.template-lintrc.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/.try.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/.try.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/CONTRIBUTING.md -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/LICENSE.md -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/README.md -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/addon-main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/addon-main.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/babel.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/babel.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/babel.publish.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/babel.publish.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/config/ember-cli-update.json -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/eslint.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/package.json -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/pnpm-lock.yaml -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/rollup.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/src/components/from-direct/example.css: -------------------------------------------------------------------------------- 1 | .green { 2 | color: rgba(0, 244, 0); 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/src/components/from-direct/example.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/src/components/from-direct/example.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/src/components/from-virtual/example.css: -------------------------------------------------------------------------------- 1 | .blue { 2 | color: rgba(0, 0, 244); 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/src/components/from-virtual/example.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/src/components/from-virtual/example.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/src/direct.ts: -------------------------------------------------------------------------------- 1 | export * from './components/from-direct/example.gts'; 2 | -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/src/index.ts -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/testem.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/testem.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/tests/index.html -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/tests/rendering-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/tests/rendering-test.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/tests/test-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/tests/test-helper.ts -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/tsconfig.json -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/tsconfig.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/tsconfig.publish.json -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/unpublished-development-types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/unpublished-development-types/index.d.ts -------------------------------------------------------------------------------- /test-apps/v2-addon-bundled/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-bundled/vite.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/.gitignore -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/.prettierignore -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/.prettierrc.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/.template-lintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/.template-lintrc.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/addon-main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/addon-main.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/babel.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/babel.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/eslint.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/alert.css -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/alert.js -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/at-class/component-at-class.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/at-class/component-at-class.css -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/at-class/component-at-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/at-class/component-at-class.js -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/at-class/component-at-class.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/at-class/component-at-class.js.map -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/at-class/has-at-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/at-class/has-at-class.js -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/at-class/has-at-class.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/at-class/has-at-class.js.map -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/footer.css -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/footer.js -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/header.js -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/inline-css-a429dce1a164746b7f8ad15dc067290e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/inline-css-a429dce1a164746b7f8ad15dc067290e.css -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/inline-css-d542ca65446c00a9a005e6e4fe7e0bbc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/inline-css-d542ca65446c00a9a005e6e4fe7e0bbc.css -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/inline.js -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/time.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/time.css -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/fixtures/expected-dist/components/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/fixtures/expected-dist/components/time.js -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/package.json -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/pnpm-lock.yaml -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/rollup.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/src/components/alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/src/components/alert.css -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/src/components/alert.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/src/components/alert.gjs -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/src/components/at-class/component-at-class.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/src/components/at-class/component-at-class.css -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/src/components/at-class/component-at-class.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/src/components/at-class/component-at-class.gjs -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/src/components/at-class/has-at-class.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/src/components/at-class/has-at-class.gjs -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/src/components/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/src/components/footer.css -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/src/components/footer.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/src/components/footer.gjs -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/src/components/header.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/src/components/header.gjs -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/src/components/inline.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/src/components/inline.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/src/components/time.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/src/components/time.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/src/components/time.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-apps/v2-addon-layer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-layer/tsconfig.json -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/.editorconfig -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/.env.development -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/.gitignore -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/.prettierignore -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/.prettierrc.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/.template-lintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/.template-lintrc.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/.try.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/.try.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/CONTRIBUTING.md -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/LICENSE.md -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/README.md -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/addon-main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/addon-main.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/babel.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/babel.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/babel.publish.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/babel.publish.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/config/ember-cli-update.json -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/demo-app/app.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/demo-app/app.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/demo-app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/demo-app/styles.css -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/demo-app/templates/application.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/demo-app/templates/application.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/eslint.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/index.html -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/package.json -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/pnpm-lock.yaml -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/rollup.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/src/components/glint-v2.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/src/components/glint-v2.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/src/template-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/src/template-registry.ts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/testem.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/testem.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/tests/index.html -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/tests/test-helper.js -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/tests/test-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/tests/test-helper.ts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/tsconfig.json -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/tsconfig.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/tsconfig.publish.json -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/unpublished-development-types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/unpublished-development-types/index.d.ts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-glint-2/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-glint-2/vite.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/.gitignore -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/.prettierignore -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/.prettierrc.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | singleQuote: true, 5 | }; 6 | -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/.template-lintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/.template-lintrc.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/addon-main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/addon-main.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/babel.config.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/eslint.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/fixtures/expected-dist/components/issue-368/scoped-usage-in-class-css-afd67848cb3760288f86391a08dac515.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/fixtures/expected-dist/components/issue-368/scoped-usage-in-class-css-afd67848cb3760288f86391a08dac515.css -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/fixtures/expected-dist/components/issue-368/scoped-usage-in-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/fixtures/expected-dist/components/issue-368/scoped-usage-in-class.js -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/fixtures/expected-dist/components/issue-368/to-css-f9baf4c7e4d6a08d3b6a33ca63a397b5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/fixtures/expected-dist/components/issue-368/to-css-f9baf4c7e4d6a08d3b6a33ca63a397b5.css -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/fixtures/expected-dist/components/issue-368/to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/fixtures/expected-dist/components/issue-368/to.js -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/package.json -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/pnpm-lock.yaml -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/rollup.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/src/components/issue-368/scoped-usage-in-class.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/src/components/issue-368/scoped-usage-in-class.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/src/components/issue-368/to.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/src/components/issue-368/to.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/src/index.ts: -------------------------------------------------------------------------------- 1 | export const two = 2; 2 | -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/tsconfig.json -------------------------------------------------------------------------------- /test-apps/v2-addon-ts-with-cjs-babel/unpublished-development-types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts-with-cjs-babel/unpublished-development-types/index.d.ts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/.gitignore -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/.prettierignore -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/.prettierrc.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | singleQuote: true, 5 | }; 6 | -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/.template-lintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/.template-lintrc.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/addon-main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/addon-main.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/babel.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/babel.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/eslint.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/fixtures/expected-dist/components/strict-class.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/fixtures/expected-dist/components/strict-class.css -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/fixtures/expected-dist/components/strict-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/fixtures/expected-dist/components/strict-class.js -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/fixtures/expected-dist/components/strict.css: -------------------------------------------------------------------------------- 1 | /* src/components/strict.css */ 2 | .hi_e0d942f65 { 3 | color: blue !important; 4 | } 5 | -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/fixtures/expected-dist/components/strict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/fixtures/expected-dist/components/strict.js -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/fixtures/expected-dist/components/with-a-class.css: -------------------------------------------------------------------------------- 1 | /* src/components/with-a-class.css */ 2 | .greeting_efc49be66 { 3 | color: #00f; 4 | } 5 | -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/fixtures/expected-dist/components/with-a-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/fixtures/expected-dist/components/with-a-class.js -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/package.json -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/pnpm-lock.yaml -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/rollup.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/components/at-class-ts/at-class-more-complex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/src/components/at-class-ts/at-class-more-complex.css -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/components/at-class-ts/at-class-more-complex.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/src/components/at-class-ts/at-class-more-complex.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/components/at-class-ts/component-at-class.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/src/components/at-class-ts/component-at-class.css -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/components/at-class-ts/component-at-class.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/src/components/at-class-ts/component-at-class.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/components/at-class-ts/has-at-class.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/src/components/at-class-ts/has-at-class.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/components/issue-368/scoped-usage-in-class.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/src/components/issue-368/scoped-usage-in-class.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/components/issue-368/to.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/src/components/issue-368/to.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/components/strict-class.css: -------------------------------------------------------------------------------- 1 | .hello-there { 2 | color: rgb(1, 2, 3); 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/components/strict-class.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/src/components/strict-class.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/components/strict.css: -------------------------------------------------------------------------------- 1 | .hi { 2 | color: blue !important; 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/components/strict.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/src/components/strict.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/components/with-a-class.css: -------------------------------------------------------------------------------- 1 | .greeting { 2 | color: #00f; 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/components/with-a-class.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/src/components/with-a-class.gts -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/src/index.ts: -------------------------------------------------------------------------------- 1 | export const two = 2; 2 | -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/tsconfig.json -------------------------------------------------------------------------------- /test-apps/v2-addon-ts/unpublished-development-types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon-ts/unpublished-development-types/index.d.ts -------------------------------------------------------------------------------- /test-apps/v2-addon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/.gitignore -------------------------------------------------------------------------------- /test-apps/v2-addon/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/.prettierignore -------------------------------------------------------------------------------- /test-apps/v2-addon/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/.prettierrc.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon/.template-lintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/.template-lintrc.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon/addon-main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/addon-main.cjs -------------------------------------------------------------------------------- /test-apps/v2-addon/babel.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/babel.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/eslint.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon/fixtures/expected-dist/components/alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/fixtures/expected-dist/components/alert.css -------------------------------------------------------------------------------- /test-apps/v2-addon/fixtures/expected-dist/components/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/fixtures/expected-dist/components/alert.js -------------------------------------------------------------------------------- /test-apps/v2-addon/fixtures/expected-dist/components/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/fixtures/expected-dist/components/footer.css -------------------------------------------------------------------------------- /test-apps/v2-addon/fixtures/expected-dist/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/fixtures/expected-dist/components/footer.js -------------------------------------------------------------------------------- /test-apps/v2-addon/fixtures/expected-dist/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/fixtures/expected-dist/components/header.js -------------------------------------------------------------------------------- /test-apps/v2-addon/fixtures/expected-dist/components/inline-css-a429dce1a164746b7f8ad15dc067290e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/fixtures/expected-dist/components/inline-css-a429dce1a164746b7f8ad15dc067290e.css -------------------------------------------------------------------------------- /test-apps/v2-addon/fixtures/expected-dist/components/inline-css-d542ca65446c00a9a005e6e4fe7e0bbc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/fixtures/expected-dist/components/inline-css-d542ca65446c00a9a005e6e4fe7e0bbc.css -------------------------------------------------------------------------------- /test-apps/v2-addon/fixtures/expected-dist/components/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/fixtures/expected-dist/components/inline.js -------------------------------------------------------------------------------- /test-apps/v2-addon/fixtures/expected-dist/components/time.css: -------------------------------------------------------------------------------- 1 | /* src/components/time.css */ 2 | h1.e3dfc1780 { 3 | color: red; 4 | } 5 | -------------------------------------------------------------------------------- /test-apps/v2-addon/fixtures/expected-dist/components/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/fixtures/expected-dist/components/time.js -------------------------------------------------------------------------------- /test-apps/v2-addon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/package.json -------------------------------------------------------------------------------- /test-apps/v2-addon/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/pnpm-lock.yaml -------------------------------------------------------------------------------- /test-apps/v2-addon/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/rollup.config.mjs -------------------------------------------------------------------------------- /test-apps/v2-addon/src/components/alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/src/components/alert.css -------------------------------------------------------------------------------- /test-apps/v2-addon/src/components/alert.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/src/components/alert.gjs -------------------------------------------------------------------------------- /test-apps/v2-addon/src/components/at-class/component-at-class.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/src/components/at-class/component-at-class.css -------------------------------------------------------------------------------- /test-apps/v2-addon/src/components/at-class/component-at-class.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/src/components/at-class/component-at-class.gjs -------------------------------------------------------------------------------- /test-apps/v2-addon/src/components/at-class/has-at-class.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/src/components/at-class/has-at-class.gjs -------------------------------------------------------------------------------- /test-apps/v2-addon/src/components/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/src/components/footer.css -------------------------------------------------------------------------------- /test-apps/v2-addon/src/components/footer.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/src/components/footer.gjs -------------------------------------------------------------------------------- /test-apps/v2-addon/src/components/header.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/src/components/header.gjs -------------------------------------------------------------------------------- /test-apps/v2-addon/src/components/inline.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/src/components/inline.gts -------------------------------------------------------------------------------- /test-apps/v2-addon/src/components/time.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/v2-addon/src/components/time.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/src/components/time.gts -------------------------------------------------------------------------------- /test-apps/v2-addon/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-apps/v2-addon/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/v2-addon/tsconfig.json -------------------------------------------------------------------------------- /test-apps/vite-app-layer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/.gitignore -------------------------------------------------------------------------------- /test-apps/vite-app-layer/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/.prettierignore -------------------------------------------------------------------------------- /test-apps/vite-app-layer/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/.prettierrc.cjs -------------------------------------------------------------------------------- /test-apps/vite-app-layer/.template-lintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/.template-lintrc.cjs -------------------------------------------------------------------------------- /test-apps/vite-app-layer/babel.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/babel.config.mjs -------------------------------------------------------------------------------- /test-apps/vite-app-layer/config/optional-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/config/optional-features.json -------------------------------------------------------------------------------- /test-apps/vite-app-layer/config/targets.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/config/targets.cjs -------------------------------------------------------------------------------- /test-apps/vite-app-layer/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/eslint.config.mjs -------------------------------------------------------------------------------- /test-apps/vite-app-layer/fixtures/expected-dist/assets/main-DzSMgB_c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/fixtures/expected-dist/assets/main-DzSMgB_c.css -------------------------------------------------------------------------------- /test-apps/vite-app-layer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/index.html -------------------------------------------------------------------------------- /test-apps/vite-app-layer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/package.json -------------------------------------------------------------------------------- /test-apps/vite-app-layer/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/pnpm-lock.yaml -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/app.js -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/components/forth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/components/forth.css -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/components/forth.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/components/forth.gjs -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/components/in-app/at-class-ts/calls-has-at-class.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/components/in-app/at-class-ts/calls-has-at-class.css -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/components/in-app/at-class-ts/calls-has-at-class.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/components/in-app/at-class-ts/calls-has-at-class.gts -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/components/in-app/at-class-ts/has-at-class.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/components/in-app/at-class-ts/has-at-class.gts -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/components/in-app/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/components/in-app/basic.css -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/components/in-app/basic.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/components/in-app/basic.gts -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/components/in-app/scoped.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/components/in-app/scoped.gjs -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/components/third.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/components/third.gjs -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/components/with-class.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/components/with-class.gjs -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/config.js -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/registry.js -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/router.js -------------------------------------------------------------------------------- /test-apps/vite-app-layer/src/templates/application.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/src/templates/application.gjs -------------------------------------------------------------------------------- /test-apps/vite-app-layer/testem.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/testem.cjs -------------------------------------------------------------------------------- /test-apps/vite-app-layer/tests/from-v2-addon-ts/strict-class-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/tests/from-v2-addon-ts/strict-class-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app-layer/tests/from-v2-addon/inline-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/tests/from-v2-addon/inline-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app-layer/tests/in-app/at-class-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/tests/in-app/at-class-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app-layer/tests/in-app/basic-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/tests/in-app/basic-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app-layer/tests/in-app/scoped-test.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/tests/in-app/scoped-test.gjs -------------------------------------------------------------------------------- /test-apps/vite-app-layer/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/tests/index.html -------------------------------------------------------------------------------- /test-apps/vite-app-layer/tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/tests/test-helper.js -------------------------------------------------------------------------------- /test-apps/vite-app-layer/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-layer/vite.config.mjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/.editorconfig -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/.ember-cli -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/.env.test -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/.gitignore -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/.prettierignore -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/.prettierrc.cjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/.stylelintignore -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/.stylelintrc.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: ['stylelint-config-standard'], 5 | }; 6 | -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/.template-lintrc.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended', 5 | }; 6 | -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["dist"] 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/README.md -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/app/app.ts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/config/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/app/config/environment.ts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/deprecation-workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/app/deprecation-workflow.ts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/pods/another/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/app/pods/another/styles.css -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/pods/another/template.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/app/pods/another/template.gjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/pods/application/styles.css: -------------------------------------------------------------------------------- 1 | .template-class { 2 | text-decoration: underline; 3 | } 4 | -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/pods/application/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/app/pods/application/template.hbs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/pods/top-level/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/app/pods/top-level/styles.css -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/pods/top-level/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/app/pods/top-level/template.hbs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/app/router.ts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/app/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/app/styles/app.css -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/babel.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/babel.config.mjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/config/ember-cli-update.json -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/config/environment.js -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/config/optional-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/config/optional-features.json -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/config/targets.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/config/targets.cjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/ember-cli-build.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/ember-cli-build.cjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/eslint.config.mjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/index.html -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/package.json -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/pnpm-lock.yaml -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/testem.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/testem.cjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/tests/index.html -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/tests/pods/another-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/tests/pods/another-test.ts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/tests/pods/application-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/tests/pods/application-test.ts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/tests/pods/top-level-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/tests/pods/top-level-test.ts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/tests/test-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/tests/test-helper.ts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/tsconfig.json -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat-pods/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat-pods/vite.config.mjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/.gitignore -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/.prettierignore -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/.prettierrc.cjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/.template-lintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/.template-lintrc.cjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/babel.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/babel.config.mjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/config/optional-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/config/optional-features.json -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/config/targets.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/config/targets.cjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/ember-cli-build.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/ember-cli-build.cjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/eslint.config.mjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/index.html -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/package.json -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/pnpm-lock.yaml -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/app.js -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/forth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/forth.css -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/forth.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/forth.gjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/at-class-ts/calls-has-at-class.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/at-class-ts/calls-has-at-class.css -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/at-class-ts/calls-has-at-class.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/at-class-ts/calls-has-at-class.gts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/at-class-ts/has-at-class.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/at-class-ts/has-at-class.gts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/basic.css -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/basic.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/basic.gts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/legacy-co-located-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/legacy-co-located-js.css -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/legacy-co-located-js.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/legacy-co-located-js.hbs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/legacy-co-located-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/legacy-co-located-js.js -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/legacy-co-located.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/legacy-co-located.css -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/legacy-co-located.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/legacy-co-located.hbs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/legacy-co-located.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/legacy-co-located.ts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/legacy-conditional.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/legacy-conditional.css -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/legacy-conditional.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/legacy-conditional.hbs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/legacy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/legacy.css -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/in-app/legacy.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/in-app/legacy.hbs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/third.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/third.gjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/components/with-class.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/components/with-class.gjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/config.js -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/registry.js -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/src/router.js -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/testem.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/testem.cjs -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/tests/from-v2-addon-ts/strict-class-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/tests/from-v2-addon-ts/strict-class-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/tests/in-app/at-class-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/tests/in-app/at-class-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/tests/in-app/basic-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/tests/in-app/basic-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/tests/in-app/legacy-co-located-js-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/tests/in-app/legacy-co-located-js-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/tests/in-app/legacy-co-located-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/tests/in-app/legacy-co-located-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/tests/in-app/legacy-conditional-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/tests/in-app/legacy-conditional-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/tests/in-app/legacy-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/tests/in-app/legacy-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/tests/index.html -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/tests/test-helper.js -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/tsconfig.json -------------------------------------------------------------------------------- /test-apps/vite-app-with-compat/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app-with-compat/vite.config.mjs -------------------------------------------------------------------------------- /test-apps/vite-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/.gitignore -------------------------------------------------------------------------------- /test-apps/vite-app/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/.prettierignore -------------------------------------------------------------------------------- /test-apps/vite-app/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/.prettierrc.cjs -------------------------------------------------------------------------------- /test-apps/vite-app/.template-lintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/.template-lintrc.cjs -------------------------------------------------------------------------------- /test-apps/vite-app/babel.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/babel.config.mjs -------------------------------------------------------------------------------- /test-apps/vite-app/config/optional-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/config/optional-features.json -------------------------------------------------------------------------------- /test-apps/vite-app/config/targets.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/config/targets.cjs -------------------------------------------------------------------------------- /test-apps/vite-app/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/eslint.config.mjs -------------------------------------------------------------------------------- /test-apps/vite-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/index.html -------------------------------------------------------------------------------- /test-apps/vite-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/package.json -------------------------------------------------------------------------------- /test-apps/vite-app/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/pnpm-lock.yaml -------------------------------------------------------------------------------- /test-apps/vite-app/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/app.js -------------------------------------------------------------------------------- /test-apps/vite-app/src/components/forth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/components/forth.css -------------------------------------------------------------------------------- /test-apps/vite-app/src/components/forth.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/components/forth.gjs -------------------------------------------------------------------------------- /test-apps/vite-app/src/components/in-app/at-class-ts/calls-has-at-class.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/components/in-app/at-class-ts/calls-has-at-class.css -------------------------------------------------------------------------------- /test-apps/vite-app/src/components/in-app/at-class-ts/calls-has-at-class.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/components/in-app/at-class-ts/calls-has-at-class.gts -------------------------------------------------------------------------------- /test-apps/vite-app/src/components/in-app/at-class-ts/has-at-class.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/components/in-app/at-class-ts/has-at-class.gts -------------------------------------------------------------------------------- /test-apps/vite-app/src/components/in-app/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/components/in-app/basic.css -------------------------------------------------------------------------------- /test-apps/vite-app/src/components/in-app/basic.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/components/in-app/basic.gts -------------------------------------------------------------------------------- /test-apps/vite-app/src/components/in-app/scoped.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/components/in-app/scoped.gjs -------------------------------------------------------------------------------- /test-apps/vite-app/src/components/scoped-class.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/components/scoped-class.gts -------------------------------------------------------------------------------- /test-apps/vite-app/src/components/third.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/components/third.gjs -------------------------------------------------------------------------------- /test-apps/vite-app/src/components/with-class.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/components/with-class.gjs -------------------------------------------------------------------------------- /test-apps/vite-app/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/config.js -------------------------------------------------------------------------------- /test-apps/vite-app/src/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/registry.js -------------------------------------------------------------------------------- /test-apps/vite-app/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/router.js -------------------------------------------------------------------------------- /test-apps/vite-app/src/templates/application.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/src/templates/application.gjs -------------------------------------------------------------------------------- /test-apps/vite-app/testem.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/testem.cjs -------------------------------------------------------------------------------- /test-apps/vite-app/tests/from-v2-addon-ts/strict-class-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/tests/from-v2-addon-ts/strict-class-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app/tests/from-v2-addon/inline-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/tests/from-v2-addon/inline-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app/tests/in-app/at-class-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/tests/in-app/at-class-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app/tests/in-app/basic-test.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/tests/in-app/basic-test.gts -------------------------------------------------------------------------------- /test-apps/vite-app/tests/in-app/scoped-class-transform-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/tests/in-app/scoped-class-transform-test.ts -------------------------------------------------------------------------------- /test-apps/vite-app/tests/in-app/scoped-test.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/tests/in-app/scoped-test.gjs -------------------------------------------------------------------------------- /test-apps/vite-app/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/tests/index.html -------------------------------------------------------------------------------- /test-apps/vite-app/tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/tests/test-helper.js -------------------------------------------------------------------------------- /test-apps/vite-app/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auditboard/ember-scoped-css/HEAD/test-apps/vite-app/vite.config.mjs --------------------------------------------------------------------------------