Skip to content

Commit 6647705

Browse files
committed
chore: update ember-cli to 3.27
1 parent 51e8a51 commit 6647705

13 files changed

+239
-532
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# misc
1414
/coverage/
1515
!.*
16+
.*/
1617
.eslintcache
1718

1819
# ember-try

.eslintrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ module.exports = {
4343
},
4444
plugins: ['node'],
4545
extends: ['plugin:node/recommended']
46+
},
47+
{
48+
// Test files:
49+
files: ['tests/**/*-test.{js,ts}'],
50+
extends: ['plugin:qunit/recommended']
4651
}
4752
]
4853
};

.github/workflows/build.yml

+1-10
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,7 @@ jobs:
2121
fail-fast: true
2222
matrix:
2323
# test the current and previous LTS as well as latest stable release
24-
ember:
25-
[
26-
"ember-lts-3.12",
27-
"ember-lts-3.16",
28-
"ember-lts-3.20",
29-
"ember-lts-3.24",
30-
"ember-beta",
31-
"ember-default-with-jquery",
32-
"ember-classic",
33-
]
24+
ember: ["ember-lts-3.20", "ember-lts-3.24", "ember-beta", "ember-default-with-jquery", "ember-classic"]
3425
experimental: [false]
3526
coverage: [false]
3627
include:

.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
/renovate.json
3030
/testem.js
3131
/tests/
32+
/yarn-error.log
3233
/yarn.lock
3334
.gitkeep
3435
commitlint.config.js

.template-lintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
module.exports = {
4-
extends: 'octane',
4+
extends: 'recommended',
55
rules: {
66
'no-curly-component-invocation': { allow: ['faker-text'] },
77
'no-inline-styles': false,

config/ember-try.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ module.exports = async function () {
77
return {
88
scenarios: [
99
{
10-
name: 'ember-lts-3.16',
10+
name: 'ember-lts-3.20',
1111
npm: {
1212
devDependencies: {
13-
'ember-source': '~3.16.0'
13+
'ember-source': '~3.20.5'
1414
}
1515
}
1616
},
1717
{
18-
name: 'ember-lts-3.20',
18+
name: 'ember-lts-3.24',
1919
npm: {
2020
devDependencies: {
21-
'ember-source': '~3.20.5'
21+
'ember-source': '~3.24.3'
2222
}
2323
}
2424
},

0 commit comments

Comments
 (0)