-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit addresses the following updates. 1. Component registration 2. Typescript support 3. Lit.20 4. Husky 8.0 5. Dart-Sass 6. Update all resources to Node 18 7. Delete legacy Polymer support 8. Update to @open-wc/testing 9. Single CLI development support 10. Update to @AuroDesignSystem 11. Add CODEOWNER file 12. Update issue templates 13. Update repo settings 14. Update Chalk v5 and postintall script BREAKING CHANGE: This commit includes an update to the npm namespace to @AuroDesignSystem. Changes to be committed: new file: .github/CODEOWNERS deleted: .github/ISSUE_TEMPLATE/audit.md deleted: .github/ISSUE_TEMPLATE/bug_report.md new file: .github/ISSUE_TEMPLATE/bug_report.yml deleted: .github/ISSUE_TEMPLATE/develop-design-story.md deleted: .github/ISSUE_TEMPLATE/feature_request.md new file: .github/ISSUE_TEMPLATE/feature_request.yml deleted: .github/ISSUE_TEMPLATE/general-support.md new file: .github/ISSUE_TEMPLATE/general-support.yml deleted: .github/ISSUE_TEMPLATE/new_wc.md deleted: .github/ISSUE_TEMPLATE/parent-design-story.md deleted: .github/ISSUE_TEMPLATE/review-design-story.md deleted: .github/ISSUE_TEMPLATE/symbol-design-story.md deleted: .github/ISSUE_TEMPLATE/user-story.md modified: .github/settings.yml modified: .github/workflows/testPublish.yml modified: .gitignore new file: .husky/pre-commit modified: .npmignore modified: index.js deleted: karma.conf.js modified: package-lock.json
- Loading branch information
1 parent
11aaf0c
commit 449c0c4
Showing
31 changed files
with
23,359 additions
and
17,340 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,11 @@ | ||
# Lines starting with '#' are comments. | ||
# Each line is a file pattern followed by one or more owners. | ||
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-syntax | ||
|
||
# The Auro team will be the default owners for everything in the repo. | ||
* @AlaskaAirlines/generalauroreviewers | ||
|
||
# Order is important. The last matching pattern has the most precedence. | ||
# If a pull request touches any files in the ./src dir, only these owners | ||
# will be requested to review. | ||
./src/* @AlaskaAirlines/auroteamreviewers |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,66 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
title: '[issue summary] Please verify version before submitting new issue' | ||
labels: | ||
- 'Type: Bug' | ||
- not-reviewed | ||
- auro-button | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Please verify the version of auro-button you have installed | ||
- type: markdown | ||
attributes: | ||
value: > | ||
[![See it on | ||
NPM!](https://img.shields.io/npm/v/@alaskaairux/auro-button?style=for-the-button&color=orange)](https://www.npmjs.com/package/@alaskaairux/auro-button) | ||
- type: textarea | ||
id: details | ||
attributes: | ||
label: Please describe the bug | ||
description: List out the steps to reproduce the behavior and include screenshots | ||
placeholder: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
- type: dropdown | ||
id: repro | ||
attributes: | ||
label: Reproducing the error on the docsite | ||
description: Are you able to reproduce this issue on the [Auro docsite](https://auro.alaskaair.com/)? | ||
options: | ||
- This issue is reproducible on the Auro docsite | ||
- This issue cannot be reproduced on the Auro docsite | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behavior | ||
description: Please add a clear and concise description of what you expected to | ||
happen. | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: What browsers are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- Firefox | ||
- Chrome | ||
- Safari | ||
- Microsoft Edge | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. | ||
- type: textarea | ||
id: exit-criteria | ||
attributes: | ||
label: Exit criteria | ||
description: Define your issue's exit criteria | ||
placeholder: "This issue can be closed once the error has been corrected. Any additional scope e.g. updates or refactors, should be discussed PRIOR to adding scope to this issue." |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,29 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
title: 'auro-button: [feature summary]' | ||
labels: | ||
- 'Type: Feature' | ||
- not-reviewed | ||
- auro-button | ||
body: | ||
- type: textarea | ||
id: request | ||
attributes: | ||
label: Is your feature request related to a problem? Please describe. | ||
description: A clear and concise description of what the problem is. | ||
placeholder: Ex. I'm always frustrated when [...] | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: A clear and concise description of what you want to happen. | ||
- type: textarea | ||
id: alternative | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: A clear and concise description of any alternative solutions or features you've considered. | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here. |
This file was deleted.
Oops, something went wrong.
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,24 @@ | ||
name: General support | ||
description: Suggestions that are not related to bugs or new features | ||
title: 'auro-button: [issue]' | ||
labels: | ||
- 'Type: Question' | ||
- 'Type: Feature' | ||
- not-reviewed | ||
- auro-button | ||
body: | ||
- type: textarea | ||
id: request | ||
attributes: | ||
label: General Support Request | ||
description: A clear and concise description of what you are interested in seeing. | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Possible Solution | ||
description: Not obligatory, but suggest an idea of how to implement the requested update. | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.