Skip to content

Commit eb139e4

Browse files
Move to ember-cli@6.1.0 (#677)
1 parent 0d6cdc5 commit eb139e4

File tree

221 files changed

+3167
-2890
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

221 files changed

+3167
-2890
lines changed

.eslintignore

Lines changed: 0 additions & 26 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 117 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
run: pnpm install --frozen-lockfile
180180
- name: Generate Coverage Report
181181
run: pnpm run test:cov:${{ matrix.try-scenario }}
182-
- uses: actions/upload-artifact@v3
182+
- uses: actions/upload-artifact@v4
183183
with:
184184
name: lcov-${{ matrix.try-scenario }}.info
185185
path: coverage/lcov.info
@@ -202,7 +202,7 @@ jobs:
202202
- name: Install Dependencies
203203
run: pnpm install --frozen-lockfile
204204
- name: Download coverage report parts
205-
uses: actions/download-artifact@v3
205+
uses: actions/download-artifact@v4
206206
with:
207207
path: coverage
208208
- name: Combine coverage report parts

.github/workflows/deploy-demo-and-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
pnpm run build:gh-pages:${{ matrix.try-scenario }}
3838
tar -zcvf ${{ matrix.try-scenario }}.tar.gz dist
3939
- name: Upload built project to artifacts
40-
uses: actions/upload-artifact@v3
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: ${{ matrix.try-scenario }}.tar.gz
4343
path: ${{ matrix.try-scenario }}.tar.gz
@@ -58,7 +58,7 @@ jobs:
5858
- name: Install Dependencies
5959
run: pnpm install --frozen-lockfile
6060
- name: Download builds
61-
uses: actions/download-artifact@v3
61+
uses: actions/download-artifact@v4
6262
with:
6363
path: builds
6464
- name: Prepare builds

.npmignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
/.ember-cli
88
/.env*
99
/.eslintcache
10-
/.eslintignore
11-
/.eslintrc.js
1210
/.git/
1311
/.github/
1412
/.gitignore
@@ -21,6 +19,7 @@
2119
/.watchmanconfig
2220
/CONTRIBUTING.md
2321
/ember-cli-build.js
22+
/eslint.config.mjs
2423
/testem.js
2524
/tests/
2625
/tsconfig.declarations.json

.prettierrc.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
'use strict';
22

33
module.exports = {
4+
plugins: ['prettier-plugin-ember-template-tag'],
45
overrides: [
56
{
6-
files: '*.{js,ts}',
7+
files: '*.{js,gjs,ts,gts,mjs,mts,cjs,cts}',
78
options: {
89
singleQuote: true,
910
},
1011
},
12+
{
13+
files: '*.{gjs,gts}',
14+
options: {
15+
singleQuote: true,
16+
templateSingleQuote: false,
17+
},
18+
},
1119
],
1220
};

addon-test-support/pages/models-table-bs.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
import {
2-
create,
3-
text,
4-
fillable,
2+
attribute,
53
clickable,
4+
collection,
65
count,
6+
create,
7+
fillable,
78
hasClass,
8-
value,
9-
attribute,
10-
collection,
9+
isPresent,
1110
notHasClass,
12-
triggerable,
1311
property,
14-
isPresent,
12+
text,
13+
triggerable,
14+
value,
1515
} from 'ember-cli-page-object';
1616
import { findOne } from 'ember-cli-page-object/extend';
1717
import { getter } from 'ember-cli-page-object/macros';

addon-test-support/pages/models-table-bs4.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import {
2-
create,
32
attribute,
4-
text,
3+
clickable,
54
collection,
5+
create,
66
hasClass,
77
isPresent,
8-
clickable,
8+
text,
99
} from 'ember-cli-page-object';
10-
1110
import { getter } from 'ember-cli-page-object/macros';
11+
1212
import { definition as definitionBs } from './models-table-bs';
1313

1414
export const definition = Object.assign({}, definitionBs, {

addon-test-support/pages/models-table-bs5.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import {
2-
create,
32
attribute,
4-
text,
3+
clickable,
54
collection,
5+
create,
66
hasClass,
77
isPresent,
8-
clickable,
8+
text,
99
} from 'ember-cli-page-object';
10-
1110
import { getter } from 'ember-cli-page-object/macros';
11+
1212
import { definition as definitionBs } from './models-table-bs';
1313

1414
export const definition = Object.assign({}, definitionBs, {

addon-test-support/pages/models-table-plain-html.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import {
22
attribute,
3+
clickable,
34
collection,
45
create,
56
hasClass,
67
isPresent,
78
text,
8-
clickable,
99
} from 'ember-cli-page-object';
10+
import { getter } from 'ember-cli-page-object/macros';
1011

1112
import { definition as definitionBs } from './models-table-bs';
12-
import { getter } from 'ember-cli-page-object/macros';
1313

1414
export const definition = Object.assign({}, definitionBs, {
1515
columnsDropdownLabel: text('.columns-dropdown button'),

0 commit comments

Comments
 (0)