-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial upgrade to 3.28 * Initial upgrade to 3.28 * Fix test command and run yarn install * Codemods output - prior testing * Update packages in yellow and green * Update packages in yellow and green * ember-cli-htmlbars-inline-precompile is no longer needed with ember-cli-htmlbars versions 4.0.0 and higher * upgrade ember-bootstrap to 2.8.0 * WIP * fix unknown rule for template lint * fix depractation warnings with npx @ember/octanify * Update ember-bootstrap to 5.x * ember-cli-app-version * Add webpack, ember-auto-import depends on it * Revert changes to the eslintrc file * Add a dependency helper explode assignable expressesion * Remove jquery and update truth helper * Remove flash package, seems to be unused * remove an old package and write own implementation * Remove depracated package * Use new format for lint to * Update string helper * use this for property lookup in templates, fallback has been depracated * upgrade sentry and sass * upgrade ember-cli-sass * upgrade uglifyer which was renamed to terser * upgrade optional features * upgrade dotenv * Add this when accessing attributes
- Loading branch information
Showing
27 changed files
with
3,519 additions
and
4,076 deletions.
There are no files selected for viewing
This file contains 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,9 @@ | ||
{ | ||
/** | ||
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. | ||
*/ | ||
"disableAnalytics": false | ||
} |
This file contains 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 |
---|---|---|
|
@@ -29,7 +29,7 @@ module.exports = { | |
}, | ||
env: { | ||
browser: false, | ||
node: true | ||
node: true, | ||
} | ||
} | ||
] | ||
|
This file contains 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 @@ | ||
# unconventional js | ||
/blueprints/*/files/ | ||
/vendor/ | ||
|
||
# compiled output | ||
/dist/ | ||
/tmp/ | ||
|
||
# dependencies | ||
/bower_components/ | ||
/node_modules/ | ||
|
||
# misc | ||
/coverage/ | ||
!.* | ||
.eslintcache | ||
|
||
# ember-try | ||
/.node_modules.ember-try/ | ||
/bower.json.ember-try | ||
/package.json.ember-try |
This file contains 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 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 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 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 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 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 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,13 @@ | ||
import { helper } from '@ember/component/helper'; | ||
|
||
export function decimalFormat(params) { | ||
const [number] = params; | ||
|
||
if (isNaN(number) || number === '') { | ||
return ""; | ||
} | ||
|
||
return new Intl.NumberFormat().format(number); | ||
} | ||
|
||
export default helper(decimalFormat); |
This file contains 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,23 +1,23 @@ | ||
import DS from 'ember-data'; | ||
import Model, { attr } from '@ember-data/model'; | ||
|
||
export default DS.Model.extend({ | ||
meta: DS.attr(), | ||
export default Model.extend({ | ||
meta: attr(), | ||
|
||
name: DS.attr('string'), //TODO: Remove this when v1 has been retired | ||
names: DS.attr(), | ||
local: DS.attr('string'), | ||
types: DS.attr(), | ||
links: DS.attr(), | ||
aliases: DS.attr(), | ||
acronyms: DS.attr(), | ||
external_ids: DS.attr(), | ||
wikipediaUrl: DS.attr('string'), | ||
labels: DS.attr(), | ||
country: DS.attr(), | ||
addresses: DS.attr(), | ||
relationships: DS.attr(), | ||
status: DS.attr('string'), | ||
admin: DS.attr(), | ||
locations: DS.attr() | ||
name: attr('string'), //TODO: Remove this when v1 has been retired | ||
names: attr(), | ||
local: attr('string'), | ||
types: attr(), | ||
links: attr(), | ||
aliases: attr(), | ||
acronyms: attr(), | ||
external_ids: attr(), | ||
wikipediaUrl: attr('string'), | ||
labels: attr(), | ||
country: attr(), | ||
addresses: attr(), | ||
relationships: attr(), | ||
status: attr('string'), | ||
admin: attr(), | ||
locations: attr() | ||
}); | ||
|
This file contains 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 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 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 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 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
Oops, something went wrong.