Reputation: 371
Can someone explain why ? I have no warnings in console. So, i need ember-infinity for my project, but don't know how to force to work ember-infinity with ember-ace.
Using ember-infinity: 2.3.0 and ember-ace: 3.0.0. Ember-cli version: 4.10.0
To reproduce my situation you need to follow this instruction, so:
npm install -g ember-cli
ember new ember-quickstart --lang en and add
yarn add ember-ace
, yarn add ace-builds
and yarn add ember-infinity
to install packages. ember-ace ace-builds ember-infinity
add to template example for ember-ace:
<AceEditor
@value={{<p>test</p>}}
@options={{hash
minLines=5
maxLines=20
theme='ace/theme/chaos'
mode='ace/mode/css'
}} />
So the ember-ace the editor will not be shown and there will be no errors in the console.
if I remove ember infinity from the project, then everything is ok
Upvotes: 0
Views: 44
Reputation: 65143
ember-infinity looks a smidge unmaintained -- they don't have explicit support for Ember v4+
Maybe https://github.com/html-next/vertical-collection will suit your needs.
Upvotes: 2