diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0b8970049..c9d772483 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1670,6 +1670,9 @@ importers: '@babel/core': specifier: ^7.17.5 version: 7.24.7 + '@babel/helper-module-imports': + specifier: 7.24.7 + version: 7.24.7(supports-color@8.1.1) '@babel/plugin-proposal-decorators': specifier: ^7.17.2 version: 7.24.7(@babel/core@7.24.7) @@ -9090,6 +9093,9 @@ packages: /ajv-formats@2.1.1: resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependenciesMeta: + ajv: + optional: true dependencies: ajv: 8.16.0 diff --git a/tests/scenarios/package.json b/tests/scenarios/package.json index bc494d645..a01b9d34e 100644 --- a/tests/scenarios/package.json +++ b/tests/scenarios/package.json @@ -33,6 +33,7 @@ "license": "MIT", "devDependencies": { "@babel/core": "^7.17.5", + "@babel/helper-module-imports": "7.24.7", "@babel/plugin-proposal-decorators": "^7.17.2", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-transform-class-properties": "^7.16.7", @@ -105,4 +106,4 @@ "typescript": "^5.4.5", "webpack": "^5.90.3" } -} +} \ No newline at end of file diff --git a/tests/scenarios/static-app-test.ts b/tests/scenarios/static-app-test.ts index 2cfd3a412..9ebdf3a70 100644 --- a/tests/scenarios/static-app-test.ts +++ b/tests/scenarios/static-app-test.ts @@ -11,6 +11,7 @@ wideAppScenarios .map('static-app', project => { project.linkDevDependency('bootstrap', { baseDir: __dirname }); project.addDevDependency(emberBootstrap()); + project.linkDevDependency('@babel/helper-module-imports', { baseDir: __dirname }); project.linkDevDependency('@embroider/macros', { baseDir: __dirname }); project.linkDevDependency('ember-modifier', { baseDir: __dirname });