Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fiery-doodles-dig.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"docs-app-for-embroider-css-modules": major
---

Migrated to Vite
2 changes: 1 addition & 1 deletion .changeset/gentle-steaks-yell.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"embroider-css-modules": patch
"test-app-for-embroider-css-modules": patch
"my-v2-addon": patch
"my-v1-app": patch
"docs-app-for-embroider-css-modules": patch
"my-v2-app": patch
---

Expand Down
5 changes: 5 additions & 0 deletions .changeset/gold-jeans-work.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"docs-app-for-embroider-css-modules": patch
---

Renamed app to docs-app-for-embroider-css-modules
5 changes: 5 additions & 0 deletions .changeset/rare-experts-join.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"my-v1-app": major
---

Created a minimal app
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
fail-fast: false
matrix:
package-location:
- 'docs/embroider-css-modules'
- 'docs/my-v1-app'
- 'docs/my-v2-addon'
- 'docs/my-v2-app'
Expand Down Expand Up @@ -80,6 +81,7 @@ jobs:
fail-fast: false
matrix:
package-location:
- 'docs/embroider-css-modules'
- 'docs/my-v1-app'
- 'docs/my-v2-addon'
- 'docs/my-v2-app'
Expand All @@ -90,7 +92,7 @@ jobs:
- 'tests/embroider-css-modules'
timeout-minutes: 5
env:
RUN_PERCY: ${{ matrix.package-location == 'docs/my-v1-app' }}
RUN_PERCY: ${{ matrix.package-location == 'docs/embroider-css-modules' }}
steps:
- name: Check out a copy of the repo
uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Here are some guidelines to help you and everyone else.

<summary>Run the demo app</summary>

1. Once dependencies have been installed, you can run the [demo app](./docs/my-v1-app).
1. Once dependencies have been installed, you can run the [demo app](./docs/embroider-css-modules).

```sh
# From the workspace root
Expand Down
19 changes: 19 additions & 0 deletions docs/embroider-css-modules/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2

[*.hbs]
insert_final_newline = false

[*.{diff,md}]
trim_trailing_whitespace = false
19 changes: 19 additions & 0 deletions docs/embroider-css-modules/.ember-cli
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
/**
Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript
rather than JavaScript by default, when a TypeScript version of a given blueprint is available.
*/
"isTypeScriptProject": true,

/**
Setting `componentAuthoringFormat` to "strict" will force the blueprint generators to generate GJS
or GTS files for the component and the component rendering test. "loose" is the default.
*/
"componentAuthoringFormat": "strict",

/**
Setting `routeAuthoringFormat` to "strict" will force the blueprint generators to generate GJS
or GTS templates for routes. "loose" is the default
*/
"routeAuthoringFormat": "strict"
}
18 changes: 18 additions & 0 deletions docs/embroider-css-modules/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# compiled output
/declarations/
/dist/
/tmp/

# dependencies
/node_modules/

# misc
/.env*
/.pnp*
/.eslintcache
/.pnpm-debug.log
/.stylelintcache
/testem.log

# broccoli-debug
/DEBUG/
14 changes: 14 additions & 0 deletions docs/embroider-css-modules/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# unconventional js
/blueprints/*/files/

# compiled output
/dist/

# misc
!.*
.*/
*.html
README.md

# specific to this package
*.css.d.ts
5 changes: 5 additions & 0 deletions docs/embroider-css-modules/.stylelintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# unconventional files
/blueprints/*/files/

# compiled output
/dist/
1 change: 1 addition & 0 deletions docs/embroider-css-modules/.stylelintrc.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from '@shared-configs/stylelint';
3 changes: 3 additions & 0 deletions docs/embroider-css-modules/.template-lintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'use strict';

module.exports = require('@shared-configs/ember-template-lint');
3 changes: 3 additions & 0 deletions docs/embroider-css-modules/.watchmanconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"ignore_dirs": ["dist"]
}
Loading
Loading