Skip to content

Commit ef89a82

Browse files
committed
Fix CI, only test against embroider.
1 parent af2428b commit ef89a82

9 files changed

Lines changed: 2198 additions & 420 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,14 +116,13 @@ jobs:
116116
matrix:
117117
ember-try-scenario:
118118
[
119-
ember-lts-3.28,
119+
minimum-supported
120120
ember-lts-4.4,
121121
ember-lts-4.12,
122+
ember-lts-5.12,
122123
ember-release,
123-
ember-beta,
124-
ember-classic,
125-
embroider-safe,
126-
embroider-optimized,
124+
ember-beta
125+
ember-canary
127126
]
128127
allow-failure: [false]
129128
include:

.npmrc

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
1-
resolution-mode=highest
2-
1+
####################
32
# super strict mode
3+
####################
44
auto-install-peers=false
5+
strict-peer-dependents=true
56
resolve-peers-from-workspace-root=false
7+
8+
################
9+
# Optimizations
10+
################
11+
# Less strict, but required for tooling to not barf on duplicate peer trees.
12+
# (many libraries declare the same peers, which resolve to the same
13+
# versions)
14+
dedupe-peer-dependents=true
15+
public-hoist-pattern[]=ember-source
16+
17+
################
18+
# Compatibility
19+
################
20+
# highest is what everyone is used to, but
21+
# not ensuring folks are actually compatible with declared ranges.
22+
resolution-mode=highest

addon/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,21 +75,21 @@
7575
"@babel/plugin-proposal-class-properties": "^7.18.6",
7676
"@babel/plugin-proposal-decorators": "^7.23.6",
7777
"@embroider/addon-dev": "^4.1.3",
78-
"@glint/core": "^1.2.1",
79-
"@glint/environment-ember-loose": "^1.2.1",
80-
"@glint/environment-ember-template-imports": "^1.2.1",
81-
"@glint/template": "^1.2.1",
78+
"@glint/core": "^1.5.2",
79+
"@glint/environment-ember-loose": "^1.5.2",
80+
"@glint/environment-ember-template-imports": "^1.5.2",
81+
"@glint/template": "^1.5.2",
8282
"@rollup/plugin-babel": "^6.0.4",
8383
"@tsconfig/ember": "^3.0.3",
8484
"@types/rsvp": "^4.0.8",
8585
"@typescript-eslint/eslint-plugin": "^6.15.0",
8686
"@typescript-eslint/parser": "^6.15.0",
8787
"concurrently": "^8.2.2",
8888
"ember-source": "^5.5.0",
89-
"ember-template-lint": "^5.13.0",
89+
"ember-template-lint": "^6.1.0",
9090
"eslint": "^8.56.0",
9191
"eslint-config-prettier": "^9.1.0",
92-
"eslint-plugin-ember": "^11.12.0",
92+
"eslint-plugin-ember": "^12.5.0",
9393
"eslint-plugin-jsonc": "^2.11.2",
9494
"eslint-plugin-node": "^11.1.0",
9595
"eslint-plugin-prettier": "^5.1.2",

docs/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
"@ember/test-helpers": "^3.2.1",
4444
"@glimmer/component": "^1.0.4",
4545
"@glimmer/tracking": "^1.0.4",
46-
"@glint/core": "^1.2.1",
47-
"@glint/environment-ember-loose": "^1.2.1",
48-
"@glint/environment-ember-template-imports": "^1.2.1",
49-
"@glint/template": "^1.2.1",
46+
"@glint/core": "^1.5.2",
47+
"@glint/environment-ember-loose": "^1.5.2",
48+
"@glint/environment-ember-template-imports": "^1.5.2",
49+
"@glint/template": "^1.5.2",
5050
"@tsconfig/ember": "^3.0.3",
5151
"@types/qunit": "^2.19.9",
5252
"@types/rsvp": "^4.0.8",
@@ -72,12 +72,12 @@
7272
"ember-resolver": "^11.0.1",
7373
"ember-source": "~5.5.0",
7474
"ember-source-channel-url": "^3.0.0",
75-
"ember-template-imports": "3",
76-
"ember-template-lint": "^5.13.0",
75+
"ember-template-imports": "^4.0.0",
76+
"ember-template-lint": "^6.1.0",
7777
"ember-truth-helpers": "^4.0.3",
7878
"eslint": "^8.56.0",
7979
"eslint-config-prettier": "^9.1.0",
80-
"eslint-plugin-ember": "^11.12.0",
80+
"eslint-plugin-ember": "^12.5.0",
8181
"eslint-plugin-jsonc": "^2.11.2",
8282
"eslint-plugin-node": "^11.1.0",
8383
"eslint-plugin-prettier": "^5.1.2",
@@ -103,4 +103,4 @@
103103
"extends": "../package.json"
104104
},
105105
"private": true
106-
}
106+
}

0 commit comments

Comments
 (0)