├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── .template-lintrc.js ├── .watchmanconfig ├── README.md ├── app ├── app.js ├── assets │ └── styles.css ├── components │ ├── .gitkeep │ └── my-widget │ │ ├── index.hbs │ │ ├── index.js │ │ └── styles.css ├── controllers │ └── .gitkeep ├── helpers │ ├── .gitkeep │ └── styles.js ├── index.html ├── models │ └── .gitkeep ├── router.js ├── routes │ ├── .gitkeep │ ├── route1.js │ └── route2.js ├── styles │ └── app.css └── templates │ ├── application.hbs │ ├── route1.hbs │ └── route2.hbs ├── config ├── ember-cli-update.json ├── environment.js ├── optional-features.json └── targets.js ├── ember-cli-build.js ├── package.json ├── postcss.config.js ├── public └── robots.txt ├── tailwind.config.js ├── testem.js ├── tests ├── helpers │ └── index.js ├── index.html ├── integration │ ├── .gitkeep │ ├── components │ │ └── my-widget-test.js │ └── helpers │ │ └── styles-test.js ├── test-helper.js └── unit │ ├── .gitkeep │ └── routes │ ├── route1-test.js │ └── route2-test.js └── vendor └── .gitkeep /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/.ember-cli -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | singleQuote: true, 5 | }; 6 | -------------------------------------------------------------------------------- /.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended', 5 | }; 6 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/README.md -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/app/app.js -------------------------------------------------------------------------------- /app/assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/app/assets/styles.css -------------------------------------------------------------------------------- /app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/my-widget/index.hbs: -------------------------------------------------------------------------------- 1 |

Widget

2 | -------------------------------------------------------------------------------- /app/components/my-widget/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/app/components/my-widget/index.js -------------------------------------------------------------------------------- /app/components/my-widget/styles.css: -------------------------------------------------------------------------------- 1 | :local(.root) { 2 | background: red; 3 | } 4 | -------------------------------------------------------------------------------- /app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/helpers/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/app/helpers/styles.js -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/app/index.html -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/app/router.js -------------------------------------------------------------------------------- /app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/routes/route1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/app/routes/route1.js -------------------------------------------------------------------------------- /app/routes/route2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/app/routes/route2.js -------------------------------------------------------------------------------- /app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/app/templates/application.hbs -------------------------------------------------------------------------------- /app/templates/route1.hbs: -------------------------------------------------------------------------------- 1 | {{page-title "Route1"}} 2 | {{outlet}} -------------------------------------------------------------------------------- /app/templates/route2.hbs: -------------------------------------------------------------------------------- 1 | {{page-title 'Route2'}} 2 | 3 | 4 | -------------------------------------------------------------------------------- /config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/config/ember-cli-update.json -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/config/environment.js -------------------------------------------------------------------------------- /config/optional-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/config/optional-features.json -------------------------------------------------------------------------------- /config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/config/targets.js -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/testem.js -------------------------------------------------------------------------------- /tests/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/tests/helpers/index.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/components/my-widget-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/tests/integration/components/my-widget-test.js -------------------------------------------------------------------------------- /tests/integration/helpers/styles-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/tests/integration/helpers/styles-test.js -------------------------------------------------------------------------------- /tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/tests/test-helper.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/routes/route1-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/tests/unit/routes/route1-test.js -------------------------------------------------------------------------------- /tests/unit/routes/route2-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoactivity/ember-modern-css/HEAD/tests/unit/routes/route2-test.js -------------------------------------------------------------------------------- /vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------