You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use the latest version published to NPM in a newly created Ember application but facing this run-time issue:
Uncaught Error: Could not find module `ember-web-component-container/create-web-components` imported from `(require)`
at missingModule (loader.js:247)
at findModule (loader.js:258)
at requireModule (loader.js:24)
at register-components.js:2
I followed the documentation. Done these steps:
ember new ember-web-component-container-demo
cd ember-web-component-container-demo
ember install ember-web-component-container
Remove <link> tags from app/index.html
Run ember serve and open in Chrome
The text was updated successfully, but these errors were encountered:
Same here. The published version does not match what's here in the repo. On npm the whole /addon folder is missing. Which might be correct, as addon/create-web-components.js seems to be largely overlapping with loader.js. Also the published version is 0.1.5, while this package.json does not reflect this (still on 0.0.0)...
I got it now "working" by
commenting out this line locally (in my node_modules)
changing index.html to remove the scripts and add something like this:
I'm trying to use the latest version published to NPM in a newly created Ember application but facing this run-time issue:
I followed the documentation. Done these steps:
ember new ember-web-component-container-demo
cd ember-web-component-container-demo
ember install ember-web-component-container
<link>
tags fromapp/index.html
ember serve
and open in ChromeThe text was updated successfully, but these errors were encountered: