Skip to content

Commit 3d30369

Browse files
committed
fix lint and tests
1 parent 43863cb commit 3d30369

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.local.dic

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ debounce
5252
declaratively
5353
DefinitelyTyped
5454
deps
55+
dev
5556
draggable
5657
dropdown
5758
durations
@@ -180,6 +181,7 @@ rerender
180181
rerendering
181182
rerenders
182183
RequestManager
184+
rollup
183185
Rollup
184186
routable
185187
RunDOC
@@ -257,5 +259,6 @@ working-with-html-css-and-javascript
257259
yay
258260
ZEIT
259261
userQuestion
262+
vite
260263
Vite
261264
bundler

guides/release/build-tools/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Ember supports two different build environments:
22

33
- Our [Vite integration](./vite) works on all Ember versions back to 3.28. It became the default for newly-generated apps at Ember 6.8.
4-
- The legacy [EmberCLI-based build](https://cli.emberjs.com/release/) is also still supported on all Ember versions.
4+
- The legacy [ember-cli based build](https://cli.emberjs.com/release/) is also still supported on all Ember versions.
55

66
You can tell which one you're using based on the presence of `@embroider/vite` in your `package.json` file.
77

8-
Existing apps can use [Ember Vite Codemod](https://github.com/mainmatter/ember-vite-codemod) to switch from the EmberCLI-based build to the Vite-based build.
8+
Existing apps can use [Ember Vite Codemod](https://github.com/mainmatter/ember-vite-codemod) to switch from the ember-cli based build to the Vite based build.
99

1010
On Ember versions after 6.8, you can optionally choose to generate a new app using the older build environment via:
1111

tests/acceptance/side-bar-links-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module('Acceptance | side bar links', function (hooks) {
2727

2828
test('release links go to correct page', async function (assert) {
2929
// Manually update this number when new pages are added or removed
30-
assert.expect(125);
30+
assert.expect(127);
3131
await visit('/release');
3232

3333
let store = this.owner.lookup('service:store');

0 commit comments

Comments
 (0)