Skip to content

Commit 3c0abdd

Browse files
authored
Merge pull request ember-learn#270 from MehulKChaudhari/mehulkc/update-to-v5.12
Update to v5.12
2 parents 936dfd5 + 3c00e38 commit 3c0abdd

File tree

24 files changed

+1475
-1650
lines changed

24 files changed

+1475
-1650
lines changed

.ember-cli

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
11
{
2-
/**
3-
Ember CLI sends analytics information by default. The data is completely
4-
anonymous, but there are times when you might want to disable this behavior.
5-
6-
Setting `disableAnalytics` to true will prevent any data from being sent.
7-
*/
8-
"disableAnalytics": false,
9-
102
/**
113
Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript
124
rather than JavaScript by default, when a TypeScript version of a given blueprint is available.

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/vendor/
44

55
# compiled output
6+
/declarations/
67
/dist/
78
/tmp/
89

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# compiled output
22
/dist/
3+
/declarations/
34

45
# dependencies
56
/node_modules/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ You will need the following things properly installed on your computer.
8787

8888
## Running / Development
8989

90-
* `ember serve`
90+
* `pnpm start`
9191
* Visit your app at [http://localhost:4200](http://localhost:4200).
9292
* Visit your tests at [http://localhost:4200/tests](http://localhost:4200/tests).
9393

app/serializers/github-issue.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable prettier/prettier */
12
import RESTSerializer from '@ember-data/serializer/rest';
23
import { underscore } from '@ember/string';
34

app/serializers/github-repository.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable prettier/prettier */
12
import RESTSerializer from '@ember-data/serializer/rest';
23
import { underscore } from '@ember/string';
34

app/services/store.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from 'ember-data/store';

app/templates/issues.hbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{{! template-lint-disable no-builtin-form-components }}
12
{{page-title "Issues"}}
23
<section class="container" local-class="header-container">
34
<FilterMenu />

app/transforms/boolean.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { NumberTransform as default } from '@ember-data/serializer/transform';

app/transforms/date.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { DateTransform as default } from '@ember-data/serializer/transform';

0 commit comments

Comments
 (0)