Skip to content
#

ember-cli

Here are 336 public repositories matching this topic...

BarryThePenguin
BarryThePenguin commented Mar 12, 2020

Looking at #9009 there are a lot of great changes

  • replacing ember-cli-eslint with plain old eslint
  • running commands in parallel
  • a nice convention of lint:* and test:* npm scripts

Great work all round 🎉

I looked at adopting this approach in our projects. We're not using travis for CI, so that's one difference.. but we do run npm test (technically yarn test) in CI, which

gossi
gossi commented Feb 8, 2020

I'm looking for a convention/standard to document components, especially targeting these information:

  • arguments
  • attributes
  • yield

for components, template-only components while supporting for java- and typescript. Primarily focused for glimmer components, yet the js-only approach should also be suitable to be applied to ember components, too.

The idea is, that these conventions can

rtablada
rtablada commented Feb 7, 2019

Currently in the docs there is a section for "Components" which is confusing when someone may be looking for how to test @ember/components in their application. It think it would make sense to rename this section to fragments or maybe "organizing and sharing functionality".

The emphasis for this is because with the addition of #444 and documentation around it would add official docs for how

nadnoslen
nadnoslen commented Jan 14, 2017

It doesn't appear that this plugin respects utils in the same way that it respects other elements of EmberJS.

My app/utils/ classes are hard to find using CMD-O class search. In addition to that, I cannot quick-navigate (CMD-SHIFT-T) back and forth between a util class and its test. I'm sure there are other symptoms of utility classes not working as expected; those are the two I bump

brondsem
brondsem commented Jan 16, 2019

It took me a while to figure out how to specify which form inputs to use. I had to look at the source to figure it out, so thought it'd be good to mention here. And maybe there is a better way.

In your own component or route, something like this to specify the selectors that match your inputs:

    this.set('formSelectors', {
      numberInput: "#ccNumPretty",
      nameInput: "#fullNa

Improve this page

Add a description, image, and links to the ember-cli topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the ember-cli topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.