👋howdy!
👋
This relates to #1061.
As a developer, I would like to adopt embroider for a project I maintain that depends on ember-table.
As Ember 6.8 will enable embroider by default, this may affect more users. (https://blog.emberjs.com/ember-released-6-8/)
steps to reproduce
npx --yes ember-cli new ptarmigan
cd ptarmigan
npm add -D ember-table
Now, replace app/templates/application.gjs with:
import EmberTable from 'ember-table/components/ember-table/component';
<template>
{{outlet}}
</template>
Then, build the app:
It should error with:
[commonjs--resolver] ember-table is trying to import the emberVirtualPeerDep "@ember/string", but it seems to be missing
workarounds
- Modify the application's package.json to use @ember/string 3 instead of
👋howdy!
👋
This relates to #1061.
As a developer, I would like to adopt embroider for a project I maintain that depends on ember-table.
As Ember 6.8 will enable embroider by default, this may affect more users. (https://blog.emberjs.com/ember-released-6-8/)
steps to reproduce
Now, replace
app/templates/application.gjswith:Then, build the app:
It should error with:
workarounds