Skip to content

Commit e9d487a

Browse files
committed
WIP ember 6.8
This doesn't actually work due do a fastboot issue that hasn't been backported yet to 6.8. Once that is released we can update to 6.8 More info: emberjs/ember.js#21144
1 parent a2860f7 commit e9d487a

7 files changed

Lines changed: 282 additions & 287 deletions

File tree

.ember-cli

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
Setting `componentAuthoringFormat` to "strict" will force the blueprint generators to generate GJS
1010
or GTS files for the component and the component rendering test. "loose" is the default.
1111
*/
12-
"componentAuthoringFormat": "loose",
12+
"componentAuthoringFormat": "strict",
1313

1414
/**
1515
Setting `routeAuthoringFormat` to "strict" will force the blueprint generators to generate GJS
1616
or GTS templates for routes. "loose" is the default
1717
*/
18-
"routeAuthoringFormat": "loose"
18+
"routeAuthoringFormat": "strict"
1919
}

app/app.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import '@warp-drive/ember/install';
12
import Application from '@ember/application';
23
import Resolver from 'ember-resolver';
34
import loadInitializers from 'ember-load-initializers';

app/deprecation-workflow.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@ setupDeprecationWorkflow({
2020
*/
2121
/* example: */
2222
/* { handler: 'silence', matchId: 'template-action' }, */
23+
{ handler: 'silence', matchId: 'warp-drive:deprecate-legacy-request-methods' },
2324
],
2425
});

config/ember-cli-update.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"packages": [
44
{
55
"name": "@ember-tooling/classic-build-app-blueprint",
6-
"version": "6.7.2",
6+
"version": "6.8.0",
77
"blueprints": [
88
{
99
"name": "@ember-tooling/classic-build-app-blueprint",

eslint.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ export default [
6969
},
7070
},
7171
{
72+
...qunit.configs.recommended,
7273
files: ['tests/**/*-test.{js,gjs}'],
7374
plugins: {
7475
qunit,
@@ -78,6 +79,7 @@ export default [
7879
* CJS node files
7980
*/
8081
{
82+
...n.configs['flat/recommended-script'],
8183
files: [
8284
'**/*.cjs',
8385
'config/**/*.js',
@@ -106,6 +108,7 @@ export default [
106108
* ESM node files
107109
*/
108110
{
111+
...n.configs['flat/recommended-module'],
109112
files: ['**/*.mjs'],
110113
plugins: {
111114
n,

0 commit comments

Comments
 (0)