-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from gossi/glint-support
Add glint support
- Loading branch information
Showing
27 changed files
with
1,116 additions
and
378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,6 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
try-scenario: | ||
- ember-lts-3.24 | ||
- ember-lts-3.28 | ||
- ember-lts-4.4 | ||
- ember-lts-4.8 | ||
|
@@ -72,6 +71,33 @@ jobs: | |
run: pnpm exec ember try:one ${{ matrix.try-scenario }} --skip-cleanup | ||
working-directory: test-app | ||
|
||
typecheck: | ||
name: "${{ matrix.typescript-scenario }}" | ||
runs-on: ubuntu-latest | ||
needs: "test" | ||
timeout-minutes: 5 | ||
continue-on-error: true | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
typescript-scenario: | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
|
||
steps: | ||
- name: Setup | ||
uses: wyvox/action@v1 | ||
- name: "Change TS to ${{ matrix.typescript-scenario }}" | ||
run: "pnpm add --save-dev ${{ matrix.typescript-scenario}}" | ||
working-directory: ./test-app | ||
- name: "Type checking" | ||
run: | | ||
pnpm --filter "test-app*" exec tsc -v; | ||
pnpm --filter "test-app*" exec glint --version; | ||
pnpm --filter "test-app*" exec glint; | ||
publish: | ||
name: Publish | ||
needs: test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
# compiled output | ||
dist/ | ||
declarations/ | ||
tmp/ | ||
|
||
# dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
public-hoist-pattern[]=*prettier* | ||
public-hoist-pattern[]=*eslint* | ||
public-hoist-pattern[]=!@typescript-eslint/* | ||
public-hoist-pattern[]=@typescript-eslint/* | ||
public-hoist-pattern[]=*ember-template-lint* | ||
public-hoist-pattern[]=*stylelint* | ||
public-hoist-pattern[]=*@glint* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.