Skip to content

Commit

Permalink
Reproduction success
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Dec 13, 2023
1 parent 11629a0 commit 384d8f5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/scenarios/v2-addon-dev-typescript-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ appScenarios
addon.pkg.files = ['dist'];
addon.pkg.exports = {
'./*': './dist/*.js',
'./addon-main.js': './addon-main.cjs',
'./addon-main.cjs': './addon-main.cjs',
'./package.json': './package.json',
};
addon.pkg.scripts = {
Expand Down
4 changes: 2 additions & 2 deletions tests/scenarios/v2-addon-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ appScenarios
'example-component.css': '/* not empty */ h1 { color: red }',
},
'import-from-npm.js': `
export default async function() {
export default async function() {
let { message } = await import('third-party');
return message()
return message()
}
`,
});
Expand Down
2 changes: 1 addition & 1 deletion tests/v2-addon-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"type": "addon",
"version": 2,
"app-js": {},
"main": "addon-main.js"
"main": "addon-main.cjs"
},
"exports": {
"./*": "./*"
Expand Down

0 comments on commit 384d8f5

Please sign in to comment.