Skip to content
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

Remove sass 3 #1336

Merged
merged 7 commits into from
May 27, 2021
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ package.json.ember-try

# OS
.DS_Store
/client/.yalc
5 changes: 2 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
. "$(dirname "$0")/_/husky.sh"

cd client
yarn run test
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍🏾

yarn run lint-staged

cd ../server
yarn run test
yarn run lint-staged
yarn run lint-staged
14 changes: 14 additions & 0 deletions client/app/components/labs-ui/site-header.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import Component from '@ember/component';

export default Component.extend({
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the new new site-header, site-title component because you removed labs-ui?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@godfreyyeung yup it's the copied over version. see updated description for why

tagName: 'header',
classNames: ['site-header'],

ariaRole: 'banner',

closed: true,

responsiveNav: false,

responsiveSize: 'large',
});
5 changes: 5 additions & 0 deletions client/app/components/labs-ui/site-title.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import Component from '@ember/component';

export default Component.extend({
tagName: 'span',
});
Loading