-
Notifications
You must be signed in to change notification settings - Fork 640
Update to [email protected] and reset to the new app blueprint #10976
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
{ | ||
/** | ||
Ember CLI sends analytics information by default. The data is completely | ||
anonymous, but there are times when you might want to disable this behavior. | ||
|
||
Setting `disableAnalytics` to true will prevent any data from being sent. | ||
Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript | ||
rather than JavaScript by default, when a TypeScript version of a given blueprint is available. | ||
*/ | ||
"disableAnalytics": false | ||
"isTypeScriptProject": false | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,28 @@ | ||
# compiled output | ||
/dist/ | ||
/declarations/ | ||
/target | ||
.cargo | ||
|
||
# compiled output | ||
/dist | ||
/tmp | ||
|
||
# dependencies | ||
node_modules/ | ||
/bower_components | ||
package-lock.json | ||
yarn.lock | ||
|
||
# misc | ||
/.env* | ||
/.pnp* | ||
/.eslintcache | ||
/.sass-cache | ||
/connect.lock | ||
/coverage/* | ||
/coverage_* | ||
/local_uploads | ||
/libpeerconnection.log | ||
npm-debug.log | ||
yarn-error.log | ||
testem.log | ||
.env | ||
docker-compose.override.yml | ||
*~ | ||
src/schema.rs.orig | ||
/coverage/ | ||
/npm-debug.log* | ||
/testem.log | ||
/yarn-error.log | ||
|
||
# playwright | ||
/test-results/ | ||
/playwright-report/ | ||
/blob-report/ | ||
/playwright/.cache/ | ||
# ember-try | ||
/.node_modules.ember-try/ | ||
/npm-shrinkwrap.json.ember-try | ||
/package.json.ember-try | ||
/package-lock.json.ember-try | ||
/yarn.lock.ember-try | ||
|
||
# broccoli-debug | ||
/DEBUG/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,16 @@ | ||
dist/ | ||
# unconventional js | ||
/blueprints/*/files/ | ||
|
||
# compiled output | ||
/dist/ | ||
|
||
# misc | ||
/coverage/ | ||
!.* | ||
.*/ | ||
/pnpm-lock.yaml | ||
ember-cli-update.json | ||
*.html | ||
|
||
# ember-try | ||
/.node_modules.ember-try/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import setupDeprecationWorkflow from 'ember-cli-deprecation-workflow'; | ||
|
||
/** | ||
* Docs: https://github.com/ember-cli/ember-cli-deprecation-workflow | ||
*/ | ||
setupDeprecationWorkflow({ | ||
/** | ||
false by default, but if a developer / team wants to be more aggressive about being proactive with | ||
handling their deprecations, this should be set to "true" | ||
*/ | ||
throwOnUnhandled: false, | ||
/* to generate this list, run your app for a while (or run the test suite), | ||
* and then run in the browser console: | ||
* | ||
* deprecationWorkflow.flushDeprecations() | ||
* | ||
* And copy the handlers here | ||
*/ | ||
workflow: [ | ||
{ | ||
handler: 'silence', | ||
matchId: 'importing-inject-from-ember-service', | ||
}, | ||
{ | ||
handler: 'silence', | ||
matchId: 'ember-data:deprecate-legacy-imports', | ||
}, | ||
], | ||
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"schemaVersion": "1.0.0", | ||
"packages": [ | ||
{ | ||
"name": "ember-cli", | ||
"version": "6.3.1", | ||
"blueprints": [ | ||
{ | ||
"name": "app", | ||
"outputRepo": "https://github.com/ember-cli/ember-new-output", | ||
"codemodsSource": "ember-app-codemods-manifest@1", | ||
"isBaseBlueprint": true, | ||
"options": [ | ||
"--pnpm", | ||
"--ci-provider=github" | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
'use strict'; | ||
|
||
const browsers = [ | ||
// These are the browsers we actually are attempting to support: | ||
'last 2 Chrome versions', | ||
'last 1 Firefox version', | ||
'Firefox ESR', | ||
'last 1 Safari version', | ||
'last 1 iOS version', | ||
'last 1 Edge version', | ||
'last 1 UCAndroid version', | ||
'last 1 years', | ||
]; | ||
|
||
module.exports = { | ||
browsers: [ | ||
// These are the browsers we actually are attempting to support: | ||
'last 2 Chrome versions', | ||
'last 1 Firefox version', | ||
'Firefox ESR', | ||
'last 1 Safari version', | ||
'last 1 iOS version', | ||
'last 1 Edge version', | ||
'last 1 UCAndroid version', | ||
'last 1 years', | ||
], | ||
browsers, | ||
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,10 +61,11 @@ | |
"@ember/optional-features": "2.2.0", | ||
"@ember/render-modifiers": "3.0.0", | ||
"@ember/string": "4.0.1", | ||
"@ember/test-helpers": "5.2.1", | ||
"@ember/test-helpers": "5.1.0", | ||
"@ember/test-waiters": "4.1.0", | ||
"@embroider/compat": "3.9.0", | ||
"@embroider/core": "3.5.6", | ||
"@embroider/macros": "1.16.12", | ||
"@embroider/webpack": "4.1.0", | ||
"@eslint/eslintrc": "3.3.1", | ||
"@eslint/js": "9.24.0", | ||
|
@@ -83,20 +84,23 @@ | |
"broccoli-funnel": "3.0.8", | ||
"ember-a11y-testing": "7.1.1", | ||
"ember-auto-import": "2.10.0", | ||
"ember-cli": "6.3.1", | ||
"ember-cli": "~6.3.1", | ||
"ember-cli-babel": "8.2.0", | ||
"ember-cli-bundle-analyzer": "1.0.0", | ||
"ember-cli-clean-css": "3.0.0", | ||
"ember-cli-code-coverage": "3.1.0", | ||
"ember-cli-dependency-checker": "3.3.3", | ||
"ember-cli-dependency-lint": "2.0.1", | ||
"ember-cli-deprecation-workflow": "3.3.0", | ||
"ember-cli-head": "2.0.0", | ||
"ember-cli-htmlbars": "6.3.0", | ||
"ember-cli-inject-live-reload": "2.1.0", | ||
"ember-cli-notifications": "9.1.0", | ||
"ember-cli-terser": "4.0.2", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
"ember-click-outside": "6.1.1", | ||
"ember-concurrency": "4.0.3", | ||
"ember-css-modules": "2.1.0", | ||
"ember-data": "5.3.11", | ||
"ember-data": "~5.3.12", | ||
"ember-disable-prototype-extensions": "1.1.3", | ||
"ember-error-route": "0.2.0", | ||
"ember-event-helpers": "0.1.1", | ||
|
@@ -109,8 +113,9 @@ | |
"ember-page-title": "9.0.1", | ||
"ember-qunit": "9.0.2", | ||
"ember-resolver": "13.1.0", | ||
"ember-source": "6.0.1", | ||
"ember-source": "~6.3.0", | ||
"ember-svg-jar": "2.6.2", | ||
"ember-template-imports": "4.3.0", | ||
"ember-template-lint": "7.0.4", | ||
"ember-test-selectors": "7.1.0", | ||
"ember-truth-helpers": "4.0.3", | ||
|
@@ -136,6 +141,7 @@ | |
"playwright-msw": "3.0.1", | ||
"postcss-preset-env": "10.1.5", | ||
"prettier": "3.5.3", | ||
"prettier-plugin-ember-template-tag": "2.0.4", | ||
"qunit": "2.24.1", | ||
"qunit-console-grouper": "0.3.0", | ||
"qunit-dom": "3.4.0", | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
extracted to #10978