-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
feat(ember): v2 #19229
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
base: develop
Are you sure you want to change the base?
feat(ember): v2 #19229
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| import type ApplicationInstance from '@ember/application/instance'; | ||
| import { setupPerformance } from '@sentry/ember/performance'; | ||
|
|
||
| export function initialize(appInstance: ApplicationInstance): void { | ||
| setupPerformance(appInstance, { | ||
| minimumRunloopQueueDuration: 0, | ||
| minimumComponentRenderDuration: 0, | ||
| }); | ||
| } | ||
|
|
||
| export default { | ||
| initialize, | ||
| }; |
|
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. Since this is an app file, did the readme get updated to reflect the situation that wants this added? Is it required? |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| import type ApplicationInstance from '@ember/application/instance'; | ||
| import { setupPerformance } from '@sentry/ember/performance'; | ||
|
|
||
| export function initialize(appInstance: ApplicationInstance): void { | ||
| setupPerformance(appInstance, { | ||
| minimumRunloopQueueDuration: 0, | ||
| minimumComponentRenderDuration: 0, | ||
| }); | ||
| } | ||
|
|
||
| export default { | ||
| initialize, | ||
| }; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| # EditorConfig helps developers define and maintain consistent | ||
| # coding styles between different editors and IDEs | ||
| # editorconfig.org | ||
|
|
||
| root = true | ||
|
|
||
| [*] | ||
| end_of_line = lf | ||
| charset = utf-8 | ||
| trim_trailing_whitespace = true | ||
| insert_final_newline = true | ||
| indent_style = space | ||
| indent_size = 2 | ||
|
|
||
| [*.hbs] | ||
| insert_final_newline = false | ||
|
|
||
| [*.{diff,md}] | ||
| trim_trailing_whitespace = false |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # This file is committed to git and should not contain any secrets. | ||
| # | ||
| # Vite recommends using .env.local or .env.[mode].local if you need to manage secrets | ||
| # SEE: https://vite.dev/guide/env-and-mode.html#env-files for more information. | ||
|
|
||
|
|
||
| # Default NODE_ENV with vite build --mode=test is production | ||
| NODE_ENV=development |
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,37 +1,18 @@ | ||
| # See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
|
||
| # compiled output | ||
| /dist/ | ||
| /tmp/ | ||
|
|
||
| # dependencies | ||
| /bower_components/ | ||
| /node_modules/ | ||
|
|
||
| # misc | ||
| /.env* | ||
| /.pnp* | ||
| /.sass-cache | ||
| /connect.lock | ||
| /coverage/ | ||
| /libpeerconnection.log | ||
| /npm-debug.log* | ||
| /testem.log | ||
| /yarn-error.log | ||
| dist/ | ||
| dist-tests/ | ||
| declarations/ | ||
|
|
||
| # ember-try | ||
| /.node_modules.ember-try/ | ||
| /bower.json.ember-try | ||
| /npm-shrinkwrap.json.ember-try | ||
| /package.json.ember-try | ||
| /package-lock.json.ember-try | ||
| /yarn.lock.ember-try | ||
| # from scenarios | ||
| tmp/ | ||
| config/optional-features.json | ||
| ember-cli-build.cjs | ||
|
|
||
| # broccoli-debug | ||
| /DEBUG/ | ||
| # npm/pnpm/yarn pack output | ||
| *.tgz | ||
|
|
||
| # These get created when packaging | ||
| /instance-initializers | ||
| index.d.ts | ||
| runloop.d.ts | ||
| types.d.ts | ||
| # deps & caches | ||
| node_modules/ | ||
| .eslintcache | ||
| .prettiercache | ||
| .npm-deps/ |
This file was deleted.
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.
What are these additions for? Are they needed?