Skip to content

Commit b59a62a

Browse files
committed
Resolve some issues with `babel-plugin-ember-template-compilation
v2.2.2` The v2.2.2 release breaks our ember-template-imports v3 based setup. We need to update to v4 to fix those and also fix the scope issues we accidentally depended on.
1 parent 635c139 commit b59a62a

File tree

3 files changed

+195
-60
lines changed

3 files changed

+195
-60
lines changed

package-lock.json

+191-56
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
"ember-file-upload": "^8.4.0",
9595
"ember-focus-trap": "^1.1.0",
9696
"ember-modifier": "^4.1.0",
97-
"ember-template-imports": "^3.4.2",
97+
"ember-template-imports": "^4.1.0",
9898
"ember-test-selectors": "^6.0.0",
9999
"ember-truth-helpers": "^3.1.1 || ^4.0.3",
100100
"inputmask": "^5.0.9-beta.45",
@@ -214,6 +214,6 @@
214214
}
215215
},
216216
"volta": {
217-
"node": "18.18.0"
217+
"node": "18.20.2"
218218
}
219219
}

tests/integration/modifiers/au-date-input-test.gts

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ module('Integration | Modifier | au-date-input', function (hooks) {
6767
</template>,
6868
);
6969

70-
const input = find('input');
70+
const inputElement = find('input');
7171

72-
await clearInput(input!);
72+
await clearInput(inputElement!);
7373
assert.verifySteps(
7474
['true', 'true'],
7575
'`@onChange` returns `null` if the input is cleared',

0 commit comments

Comments
 (0)