Skip to content

Commit 95fc7e1

Browse files
committed
fix: lint
1 parent 90c86d5 commit 95fc7e1

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

content/ember-released-6-8.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ Ember.js is the core framework for building ambitious web applications.
2424

2525
Ember.js 6.8 is an incremental, backwards compatible release of Ember with bug fixes, performance improvements, and minor deprecations.
2626

27-
v6.8.0 of `ember-source` is the first minor version of the package to be published to `npm` with [Trusted Publishing](https://docs.npmjs.com/trusted-publishers). We will be implementing this across all our packages.
27+
v6.8.0 of `ember-source` is the first minor version of the package to be published to `npm` with [Trusted Publishing](https://docs.npmjs.com/trusted-publishers). We will be implementing this across all our packages.
2828

29-
At the bottom of the [npm package page](https://www.npmjs.com/package/ember-source), you'll find a section labeled 'Provenance' that provides verification that the package contents were published from the source repository.
29+
At the bottom of the [npm package page](https://www.npmjs.com/package/ember-source), you'll find a section labeled 'Provenance' that provides verification that the package contents were published from the source repository.
3030

3131
#### Bug fixes
3232

@@ -68,7 +68,6 @@ The API supports several configuration options including:
6868

6969
You can read more about this on the page for [RFC #1068](https://rfcs.emberjs.com/id/1099-rendercomponent/)
7070

71-
7271
##### `@ember/reactive/collections`
7372

7473
Ember 6.8 introduces a new package `@ember/reactive/collections` that provides built-in tracking utilities for common collections. This package includes tracked versions of JavaScript's native collection types: `trackedArray`, `trackedObject`, `trackedMap`, `trackedSet`, `trackedWeakMap`, and `trackedWeakSet`.
@@ -86,7 +85,7 @@ const addItem = (arr, item) => arr.push(item);
8685
{{#each list as |item|}}
8786
<div>{{item}}</div>
8887
{{/each}}
89-
88+
9089
<button {{on 'click' (fn addItem list 'cherry')}}>
9190
Add Item
9291
</button>
@@ -100,7 +99,6 @@ You can read more about this on the page for [RFC #1068](https://rfcs.emberjs.co
10099

101100
This feature was inspired by `tracked-built-ins` and brings these essential reactivity primitives directly into the framework core.
102101

103-
104102
#### Deprecations
105103

106104
Ember.js 6.8 introduces <insert number here> new deprecations.

0 commit comments

Comments
 (0)