Skip to content

Commit df12b39

Browse files
committed
Restore correct version of babel-plugin-ember-template-compilation
babel-plugin-ember-template-compilation was downgraded from 3.x to 2.x only to keep eslint happy. That's not good, we should be shipping the current major. Also, everybody still has 3.x also, because `@embroider/core` depend on it. The mixing is inconsistent.
1 parent 65b1d9a commit df12b39

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

files/_js_eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import eslintConfigPrettier from 'eslint-config-prettier';
2121
import qunit from 'eslint-plugin-qunit';
2222
import n from 'eslint-plugin-n';
2323

24-
import babelParser from '@babel/eslint-parser';
24+
import babelParser from '@babel/eslint-parser/experimental-worker';
2525

2626
const esmParserOptions = {
2727
ecmaFeatures: { modules: true },

files/_ts_eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import eslintConfigPrettier from 'eslint-config-prettier';
2424
import qunit from 'eslint-plugin-qunit';
2525
import n from 'eslint-plugin-n';
2626

27-
import babelParser from '@babel/eslint-parser';
27+
import babelParser from '@babel/eslint-parser/experimental-worker';
2828

2929
const parserOptions = {
3030
esm: {

files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"@warp-drive/json-api": "5.8.0",
6262
"@warp-drive/legacy": "5.8.0",
6363
"@warp-drive/utilities": "5.8.0<% } %>",
64-
"babel-plugin-ember-template-compilation": "^2.4.1",
64+
"babel-plugin-ember-template-compilation": "^3.0.1",
6565
"concurrently": "^9.2.1",
6666
"decorator-transforms": "^2.3.0",
6767
"ember-auto-import": "^2.11.1",

0 commit comments

Comments
 (0)