Skip to content

Commit

Permalink
Fix missing exports in package key
Browse files Browse the repository at this point in the history
Error: 

```
Package subpath './src/load-ember-template-compiler' is not defined by "exports" in /.../embroider/node_modules/@embroider/core/package.json
```
  • Loading branch information
thoov authored Jun 15, 2021
1 parent a2883a9 commit 0680c96
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
},
"./src/messages": "./src/messages.js",
"./src/babel-plugin-inline-hbs": "./src/babel-plugin-inline-hbs.js",
"./src/mini-modules-polyfill": "./src/mini-modules-polyfill.js"
"./src/mini-modules-polyfill": "./src/mini-modules-polyfill.js",
"./src/load-ember-template-compiler": "./src/load-ember-template-compiler.js"
},
"files": [
"src/**/*.js",
Expand Down

0 comments on commit 0680c96

Please sign in to comment.