-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade ember to 5.4.0 version (#757)
* upgrade ember to 4.8.1 version * upgrade ember to 4.12.1 version * upgrade: ember to 5.4.0 version * fix: ci.yml file * chore: remove unnecessary actions and its file * tests: fix login service test leak issue * chore: add node modules to eslintignore and prettierignore * chore: remove unnecessary log file
- Loading branch information
Showing
101 changed files
with
4,224 additions
and
3,633 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 |
---|---|---|
@@ -1,15 +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. | ||
*/ | ||
"disableAnalytics": false, | ||
|
||
/** | ||
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. | ||
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. | ||
*/ | ||
"isTypeScriptProject": 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 |
---|---|---|
@@ -1,25 +1,16 @@ | ||
# dependencies | ||
/node_modules/ | ||
|
||
# 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 | ||
/npm-shrinkwrap.json.ember-try | ||
/package.json.ember-try | ||
/package-lock.json.ember-try | ||
/yarn.lock.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,16 @@ | ||
# dependencies | ||
/node_modules/ | ||
|
||
# unconventional js | ||
/blueprints/*/files/ | ||
/vendor/ | ||
|
||
# compiled output | ||
/dist/ | ||
/tmp/ | ||
|
||
# dependencies | ||
/bower_components/ | ||
/node_modules/ | ||
|
||
# misc | ||
/coverage/ | ||
!.* | ||
.eslintcache | ||
.lint-todo/ | ||
.*/ | ||
|
||
# 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 | ||
/.node_modules.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
singleQuote: true, | ||
overrides: [ | ||
{ | ||
files: '*.{js,ts}', | ||
options: { | ||
singleQuote: 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,8 @@ | ||
# unconventional files | ||
/blueprints/*/files/ | ||
|
||
# compiled output | ||
/dist/ | ||
|
||
# addons | ||
/.node_modules.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
extends: ['stylelint-config-standard', 'stylelint-prettier/recommended'], | ||
|
||
rules: { | ||
'selector-class-pattern': null, | ||
}, | ||
}; |
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,3 +1,3 @@ | ||
{ | ||
"ignore_dirs": ["tmp", "dist"] | ||
"ignore_dirs": ["dist"] | ||
} |
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 |
---|---|---|
@@ -1,48 +1,93 @@ | ||
{{#if this.isDevMode}} | ||
<section aria-label='main-section under dev feature flag' class='main--dev'> | ||
<h1 data-test-main-welcome-title class="main__welcome--title">Welcome to Real Dev Squad</h1> | ||
<img data-test-main-hero-img class='main__hero--img' src='assets\images\hero-community.png' alt='Real Dev Squad' /> | ||
<div data-test-main-container class='main__container'> | ||
<div class='social'> | ||
{{#each this.SOCIAL_LINK_PROPERTIES as |social|}} | ||
<a data-test-social-link={{social.title}} href={{social.url}} rel='noopener noreferrer' target='_blank' | ||
class='social__link'> | ||
<img data-test-social-icon={{social.title}} class='social__icon' src={{social.icon}} alt={{social.title}} /> | ||
</a> | ||
{{#if (not-eq social.title 'Instagram')}} | ||
<span data-test-vertical-separators class='social__seperators-vertical--dev'> | </span> | ||
{{/if}} | ||
{{/each}} | ||
<section aria-label="main-section under dev feature flag" class="main--dev"> | ||
<h1 data-test-main-welcome-title class="main__welcome--title">Welcome to | ||
Real Dev Squad</h1> | ||
<img | ||
data-test-main-hero-img | ||
class="main__hero--img" | ||
src="assets\images\hero-community.png" | ||
alt="Real Dev Squad" | ||
/> | ||
<div data-test-main-container class="main__container"> | ||
<div class="social--dev"> | ||
{{#each this.SOCIAL_LINK_PROPERTIES as |social|}} | ||
<a | ||
data-test-social-link={{social.title}} | ||
href={{social.url}} | ||
rel="noopener noreferrer" | ||
target="_blank" | ||
class="social__link" | ||
> | ||
<img | ||
data-test-social-icon={{social.title}} | ||
class="social__icon--dev" | ||
src={{social.icon}} | ||
alt={{social.title}} | ||
/> | ||
</a> | ||
{{#if (not-eq social.title "Instagram")}} | ||
<span | ||
data-test-vertical-separators | ||
class="social__seperators-vertical--dev" | ||
> | </span> | ||
{{/if}} | ||
{{/each}} | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</section> | ||
{{else}} | ||
<section class='header'> | ||
<img data-test-logo class='header__logo' src='assets/images/rds-logo-2x.png' alt='Real Dev Squad' /> | ||
<section class="header"> | ||
<img | ||
data-test-logo | ||
class="header__logo" | ||
src="assets/images/rds-logo-2x.png" | ||
alt="Real Dev Squad" | ||
/> | ||
|
||
<div class='header__container'> | ||
<span class='container__text-social'> | ||
<h2 data-test-subtitle class='text__subtitle'> | ||
<span class='text__welcome'>Welcome</span> | ||
<span class='text__to'>to the</span> | ||
</h2> | ||
<h1 data-test-title class='text__title'>Real Dev Squad</h1> | ||
<div class="header__container"> | ||
<span class="container__text-social"> | ||
<h2 data-test-subtitle class="text__subtitle"> | ||
<span class="text__welcome">Welcome</span> | ||
<span class="text__to">to the</span> | ||
</h2> | ||
<h1 data-test-title class="text__title">Real Dev Squad</h1> | ||
|
||
<div class='social'> | ||
{{#each this.SOCIAL_LINK_PROPERTIES as |social|}} | ||
<a data-test-social-link={{social.title}} href={{social.url}} rel='noopener noreferrer' target='_blank' | ||
class='social__handles'> | ||
{{social.title}} | ||
<img data-test-social-icon={{social.title}} class='social__icon' src={{social.icon}} alt={{social.title}} /> | ||
</a> | ||
{{#if (not-eq social.title 'Instagram')}} | ||
<span data-test-vertical-separators class='social__seperators-vertical'></span> | ||
<span data-test-round-separators class='social__seperators-round'>•</span> | ||
{{/if}} | ||
{{/each}} | ||
</div> | ||
</span> | ||
<img data-test-welcome-img class='container__image' src='assets/images/welcome-image.png' alt='Welcome' /> | ||
</div> | ||
</section> | ||
<div class="social"> | ||
{{#each this.SOCIAL_LINK_PROPERTIES as |social|}} | ||
<a | ||
data-test-social-link={{social.title}} | ||
href={{social.url}} | ||
rel="noopener noreferrer" | ||
target="_blank" | ||
class="social__handles" | ||
> | ||
{{social.title}} | ||
<img | ||
data-test-social-icon={{social.title}} | ||
class="social__icon" | ||
src={{social.icon}} | ||
alt={{social.title}} | ||
/> | ||
</a> | ||
{{#if (not-eq social.title "Instagram")}} | ||
<span | ||
data-test-vertical-separators | ||
class="social__seperators-vertical" | ||
></span> | ||
<span | ||
data-test-round-separators | ||
class="social__seperators-round" | ||
>•</span> | ||
{{/if}} | ||
{{/each}} | ||
</div> | ||
</span> | ||
<img | ||
data-test-welcome-img | ||
class="container__image" | ||
src="assets/images/welcome-image.png" | ||
alt="Welcome" | ||
/> | ||
</div> | ||
</section> | ||
{{/if}} |
Oops, something went wrong.