We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1513dcd commit edc4e37Copy full SHA for edc4e37
1 file changed
.try.mjs
@@ -23,13 +23,18 @@ const compatDeps = {
23
'@ember/optional-features': '^2.2.0',
24
};
25
26
-function compatLTS(version) {
+const ancientDeps = {
27
+ 'ember-cli': '^4.12.0',
28
+};
29
+
30
+function compatLTS(version, options = {}) {
31
return {
32
name: `ember-lts-${version}`,
33
npm: {
34
devDependencies: {
35
'ember-source': `~${version}`,
36
...compatDeps,
37
+ ...options?.deps,
38
},
39
40
env: {
@@ -41,7 +46,7 @@ function compatLTS(version) {
41
46
42
47
export default {
43
48
scenarios: [
44
- compatLTS('3.28'),
49
+ compatLTS('3.28', { deps: ancientDeps }),
45
50
compatLTS('4.4'),
51
compatLTS('4.8'),
52
compatLTS('4.12'),
0 commit comments