From 0ae8f19790ce28bf271f4291da02d9a4a01741b3 Mon Sep 17 00:00:00 2001 From: Jessica Jordan Date: Fri, 20 Dec 2019 23:43:35 +0100 Subject: [PATCH] blog(embertimes#129): update lint exception --- source/2019-12-20-the-ember-times-issue-129.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/2019-12-20-the-ember-times-issue-129.md b/source/2019-12-20-the-ember-times-issue-129.md index ca1d29ed4..e80e784ad 100644 --- a/source/2019-12-20-the-ember-times-issue-129.md +++ b/source/2019-12-20-the-ember-times-issue-129.md @@ -22,9 +22,9 @@ READMORE [Ember 3.15](https://blog.emberjs.com/2019/12/20/ember-3-15-released.html) was released this week. In addition to the usual new features, improvements and bug fixes, this release also marks the official release of Ember's first edition - **Ember Octane**! - But what is Ember Octane? Ember Octane is the **new, recommended way** for developers **to build Ember applications** and **addons**. + Octane features a new reactivity model, a renewed practice of building components and a stronger focus on HTML driven web development than ever before. It aims to make the development of performant Ember apps not only more easy and productive, but also **more fun** right from the start. And on top of that, Ember Octane is **fully opt-in** and **interoperable** for existing Ember apps - which means you can try out the new way of building modern Ember Octane apps gradually, without having to rewrite your entire app today. Want to know all about Ember Octane? Learn more about what's new in Octane and how to get started [in the official Ember Octane release announcement](https://blog.emberjs.com/2019/12/20/octane-is-here.html) by [Yehuda Katz (@wycats)](https://github.com/wycats)! Need help? Check out the **#topic-octane-migration** channel on the [Ember Discord](https://discordapp.com/invite/emberjs)! @@ -35,7 +35,7 @@ Want to know all about Ember Octane? Learn more about what's new in Octane and h While building an autofocus feature for their components, Qonto engineers were also able to improve their APIs. [Cyrille David (@dcyriller)](https://github.com/dcyriller) and team wanted to add autofocus to several components across two apps. For example, both their one-time-password input and their email input component needed autofocus. Since mixins are no longer recommended in the Ember ecosystem, Cyrille went with modifiers. [And they blogged about their experience here!](https://medium.com/qonto-engineering/autofocus-modifier-improving-our-component-apis-fd589b98f4e) -Modifiers are a new feature in [the recently released Ember Octane edition](https://blog.emberjs.com/2019/12/20/ember-3-15-released.html))https://blog.emberjs.com/2019/12/20/ember-3-15-released.html). They allow for **sharing code between components**, similar to directives in Vue or Angular. We revisited [Chris Garrett (@pzuraq)](https://github.com/pzuraq)'s blog [Coming Soon in Ember Octane - Part 4: Modifiers](https://blog.emberjs.com/2019/03/06/coming-soon-in-ember-octane-part-4.html) and the [Octane Guides preview docs: Out-of-Component-Modifications](https://octane-guides-preview.emberjs.com/release/components/template-lifecycle-dom-and-modifiers/#toc_out-of-component-modifications) to learn more! +Modifiers are a new feature in [the recently released Ember Octane edition](https://blog.emberjs.com/2019/12/20/ember-3-15-released.html). They allow for **sharing code between components**, similar to directives in Vue or Angular. We revisited [Chris Garrett (@pzuraq)](https://github.com/pzuraq)'s blog [Coming Soon in Ember Octane - Part 4: Modifiers](https://blog.emberjs.com/2019/03/06/coming-soon-in-ember-octane-part-4.html) and the [Octane Guides preview docs: Out-of-Component-Modifications](https://octane-guides-preview.emberjs.com/release/components/template-lifecycle-dom-and-modifiers/#toc_out-of-component-modifications) to learn more! Qonto wrapped up the code in a small addon, [`ember-autofocus-modifier`](https://github.com/qonto/ember-autofocus-modifier). You can use the code as-is, or copy the [snippet code](https://github.com/qonto/ember-autofocus-modifier/blob/v0.0.1/addon/modifiers/autofocus.js) and experiment with creating your own modifier.