Skip to content

Commit db9159a

Browse files
committed
update smoke-test to v4.11.0 with ember-cli-update
1 parent 7b183d5 commit db9159a

11 files changed

Lines changed: 1967 additions & 3809 deletions

File tree

smoke-test-app/.ember-cli

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"disableAnalytics": false,
99

1010
/**
11-
Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript
12-
rather than JavaScript by default, when a TypeScript version of a given blueprint is available.
11+
Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript
12+
rather than JavaScript by default, when a TypeScript version of a given blueprint is available.
1313
*/
1414
"isTypeScriptProject": false
1515
}

smoke-test-app/.eslintrc.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ module.exports = {
4141
browser: false,
4242
node: true,
4343
},
44-
plugins: ['node'],
45-
extends: ['plugin:node/recommended'],
44+
extends: ['plugin:n/recommended'],
4645
},
4746
{
4847
// test files

smoke-test-app/.npmignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
/.travis.yml
2323
/.watchmanconfig
2424
/bower.json
25-
/config/ember-try.js
2625
/CONTRIBUTING.md
2726
/ember-cli-build.js
2827
/testem.js

smoke-test-app/.prettierrc.js

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

33
module.exports = {
4-
singleQuote: true,
4+
overrides: [
5+
{
6+
files: '*.{js,ts}',
7+
options: {
8+
singleQuote: true,
9+
},
10+
},
11+
],
512
};

smoke-test-app/config/environment.js

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

smoke-test-app/package.json

Lines changed: 24 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -15,56 +15,59 @@
1515
},
1616
"scripts": {
1717
"build": "ember build --environment=production",
18-
"lint": "npm-run-all --print-name --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
19-
"lint:fix": "npm-run-all --print-name --aggregate-output --continue-on-error --parallel \"lint:*:fix\"",
18+
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
19+
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
2020
"lint:hbs": "ember-template-lint .",
2121
"lint:hbs:fix": "ember-template-lint . --fix",
2222
"lint:js": "eslint . --cache",
2323
"lint:js:fix": "eslint . --fix",
2424
"start": "ember serve",
25-
"test": "npm-run-all --print-name \"lint\" \"test:*\"",
25+
"test": "concurrently \"npm:lint\" \"npm:test:*\" --names \"lint,test:\"",
2626
"test:ember": "ember test",
2727
"test:ember-compatibility": "ember try:each"
2828
},
2929
"dependencies": {
3030
"ember-cli-babel": "^7.26.11",
31-
"ember-cli-htmlbars": "^6.1.1"
31+
"ember-cli-htmlbars": "^6.2.0"
3232
},
3333
"devDependencies": {
3434
"@ember/optional-features": "^2.0.0",
35-
"@ember/test-helpers": "~2.8.1",
36-
"@embroider/test-setup": "^1.8.3",
35+
"@ember/string": "^3.0.1",
36+
"@ember/test-helpers": "~2.9.3",
37+
"@embroider/test-setup": "^2.1.1",
3738
"@glimmer/component": "^1.1.2",
3839
"@glimmer/tracking": "^1.1.2",
3940
"babel-eslint": "^10.1.0",
4041
"broccoli-asset-rev": "^3.0.0",
41-
"ember-auto-import": "^2.4.3",
42-
"ember-cli": "~4.8.0",
42+
"concurrently": "^7.6.0",
43+
"ember-auto-import": "^2.6.1",
44+
"ember-cli": "~4.11.0",
4345
"ember-cli-dependency-checker": "^3.3.1",
4446
"ember-cli-inject-live-reload": "^2.1.0",
4547
"ember-cli-sri": "^2.1.1",
4648
"ember-cli-terser": "^4.0.2",
47-
"ember-disable-prototype-extensions": "^1.1.3",
4849
"ember-load-initializers": "^2.1.2",
4950
"ember-page-title": "^7.0.0",
50-
"ember-qunit": "^6.0.0",
51-
"ember-resolver": "^8.0.3",
52-
"ember-source": "~4.8.0",
51+
"ember-qunit": "^6.2.0",
52+
"ember-resolver": "^10.0.0",
53+
"ember-source": "~4.11.0",
5354
"ember-source-channel-url": "^3.0.0",
54-
"ember-template-lint": "^4.16.1",
55+
"ember-template-lint": "^5.6.0",
5556
"ember-try": "^2.0.0",
5657
"eslint": "^7.32.0",
57-
"eslint-config-prettier": "^8.5.0",
58-
"eslint-plugin-ember": "^11.1.0",
59-
"eslint-plugin-node": "^11.1.0",
58+
"eslint-config-prettier": "^8.6.0",
59+
"eslint-plugin-ember": "^11.4.7",
60+
"eslint-plugin-n": "^15.6.1",
6061
"eslint-plugin-prettier": "^4.2.1",
61-
"eslint-plugin-qunit": "^7.3.1",
62+
"eslint-plugin-qunit": "^7.3.4",
6263
"loader.js": "^4.7.0",
63-
"npm-run-all": "^4.1.5",
64-
"prettier": "^2.7.1",
65-
"qunit": "^2.19.2",
64+
"prettier": "^2.8.4",
65+
"qunit": "^2.19.4",
6666
"qunit-dom": "^2.0.0",
67-
"webpack": "^5.74.0"
67+
"webpack": "^5.75.0"
68+
},
69+
"peerDependencies": {
70+
"ember-source": "^3.28.0 || ^4.0.0"
6871
},
6972
"engines": {
7073
"node": "14.* || 16.* || >= 18"

smoke-test-app/tests/dummy/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-cli",
6-
"version": "4.8.0",
6+
"version": "4.11.0",
77
"blueprints": [
88
{
99
"name": "addon",
File renamed without changes.

smoke-test-app/tests/dummy/config/environment.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ module.exports = function (environment) {
77
rootURL: '/',
88
locationType: 'history',
99
EmberENV: {
10+
EXTEND_PROTOTYPES: false,
1011
FEATURES: {
1112
// Here you can enable experimental features on an ember canary build
1213
// e.g. EMBER_NATIVE_DECORATOR_SUPPORT: true

smoke-test-app/vendor/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)