This repository has been archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #124 from etn-ccis/dev
update master
- Loading branch information
Showing
20 changed files
with
1,824 additions
and
1,227 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,6 +1,6 @@ | ||
version: 2.1 | ||
orbs: | ||
codecov: codecov/codecov@1.1.3 | ||
codecov: codecov/codecov@3.2.2 | ||
gh: circleci/[email protected] | ||
jobs: | ||
build_shared: | ||
|
@@ -53,7 +53,7 @@ jobs: | |
at: . | ||
- codecov/upload: | ||
file: './coverage/clover.xml' | ||
token: 02bbcfe3-8746-4ca0-99e3-720414bb8fbc | ||
token: CODECOV_TOKEN | ||
|
||
publish: | ||
docker: | ||
|
@@ -72,17 +72,6 @@ jobs: | |
command: | | ||
yarn publish:package -b $CIRCLE_BRANCH | ||
tag: | ||
docker: | ||
- image: cimg/node:14.19.0-browsers | ||
steps: | ||
- checkout | ||
- gh/setup | ||
- run: | ||
name: Tag @brightlayer-ui/react-auth-shared | ||
command: | | ||
yarn tag:package -b $CIRCLE_BRANCH -s -blui-react-auth-shared | ||
workflows: | ||
version: 2 | ||
react_auth_shared: | ||
|
@@ -96,17 +85,10 @@ workflows: | |
only: | ||
- master | ||
- dev | ||
- tag: | ||
requires: | ||
- publish | ||
filters: | ||
branches: | ||
only: | ||
- master | ||
- coverage_report: | ||
requires: | ||
- build_shared | ||
filters: | ||
branches: | ||
only: | ||
- master | ||
requires: | ||
- build_shared | ||
filters: | ||
branches: | ||
only: | ||
- master |
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,34 @@ | ||
--- | ||
name: Bug Report | ||
about: Report a bug with a Brightlayer UI resource | ||
title: '' | ||
labels: 'bug, needs-review, brightlayer-ui' | ||
assignees: '' | ||
--- | ||
|
||
#### Describe the bug / expected behavior | ||
|
||
#### What are the steps to reproduce? | ||
|
||
1. Go to... | ||
2. Click on... | ||
|
||
#### Screenshots / Screen recording | ||
|
||
#### Code snippet / Link to minimum reproduction example | ||
|
||
<!-- Please include a minimum code snippet (if relevant) that shows the bug, or link to a codesandbox or other running example where it can be observed --> | ||
|
||
``` | ||
CODE HERE | ||
``` | ||
|
||
#### Your environment information | ||
|
||
<!-- Describe any relevant environment information (e.g., Operating System, Library version number, browser used, etc.) where the issue was discovered --> | ||
|
||
#### Suggested fix | ||
|
||
<!-- If you have a suggestion for what might be causing the issue or where to look as a starting point, please mention it here --> | ||
|
||
#### Anything else to add? |
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,15 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea for this resource | ||
title: '' | ||
labels: 'enhancement, needs-review, brightlayer-ui' | ||
assignees: '' | ||
--- | ||
|
||
#### Describe the desired feature/functionality | ||
|
||
#### Additional Context (where / how would this be used) | ||
|
||
#### Is this request related to a current issue? | ||
|
||
#### Suggested implementation details |
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 @@ | ||
<!-- If this pull request fixes an Issue, link it below. If not, you can remove the line below --> | ||
|
||
Fixes # . | ||
|
||
<!-- Include a bulleted list summarizing the main changes you have made in this PR --> | ||
|
||
#### Changes proposed in this Pull Request: | ||
|
||
- | ||
- | ||
- | ||
|
||
<!-- Include screenshots if they will help illustrate the changes in this PR --> | ||
|
||
#### Screenshots / Screen Recording (if applicable) | ||
|
||
- | ||
|
||
<!-- Instruction for PR reviewers, if more complicated than a simple yarn start --> | ||
|
||
#### To Test: | ||
|
||
- | ||
|
||
<!-- Useful for draft pull requests --> | ||
|
||
#### Any specific feedback you are looking for? | ||
|
||
- |
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 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: 'npm' | ||
directory: '/' | ||
schedule: | ||
interval: 'monthly' | ||
day: 'monday' | ||
open-pull-requests-limit: 1 | ||
target-branch: 'dev' | ||
labels: | ||
- 'external-dependency' |
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,18 @@ | ||
name: blui-pr-actions | ||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
pr-labels: | ||
uses: etn-ccis/blui-automation/.github/workflows/blui-labels.yml@dev | ||
secrets: inherit | ||
|
||
pr-comment: | ||
uses: etn-ccis/blui-automation/.github/workflows/blui-comment.yml@dev | ||
secrets: inherit |
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,17 @@ | ||
name: Tagging | ||
|
||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
CURRENT_BRANCH: ${{ github.ref_name }} | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
tag-package: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: yarn tag:package -b ${CURRENT_BRANCH} |
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
* @jeffvg @daileytj @emclaug2 | ||
* @JeffGreiner-eaton @daileytj @surajeaton |
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,16 +1,16 @@ | ||
{ | ||
"name": "@brightlayer-ui/react-auth-shared", | ||
"description": "Re-usable react logic for Authentication and Registration within Eaton applications. For use with @brightlayer-ui/react-native-auth-workflow and @brightlayer-ui/react-auth-workflow.", | ||
"version": "3.7.4", | ||
"version": "3.8.0", | ||
"license": "BSD-3-Clause", | ||
"author": { | ||
"name": "Brightlayer UI", | ||
"email": "[email protected]" | ||
}, | ||
"homepage": "https://github.com/brightlayer-ui/react-auth-shared/tree/master/", | ||
"homepage": "https://github.com/etn-ccis/blui-react-auth-shared/tree/master/", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/brightlayer-ui/react-auth-shared/tree/master" | ||
"url": "https://github.com/etn-ccis/blui-react-auth-shared/tree/master" | ||
}, | ||
"keywords": [ | ||
"Brightlayer UI", | ||
|
@@ -39,7 +39,7 @@ | |
"prettier:check": "prettier \"**/**.{tsx,ts,js,json,md}\" --check", | ||
"build": "bob build", | ||
"publish:package": "set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish", | ||
"tag:package": "npx -p @brightlayer-ui/tag blui-tag", | ||
"tag:package": "npx -p @brightlayer-ui/tag blui-tag -s -blui-react-auth-shared", | ||
"generate:licenses": "npm-license-crawler -onlyDirectDependencies -json LICENSES.json", | ||
"validate": "yarn prettier && yarn lint && yarn typescript && yarn test", | ||
"precommit": "yarn validate && yarn generate:licenses", | ||
|
@@ -48,7 +48,7 @@ | |
}, | ||
"peerDependencies": { | ||
"date-fns": "^2.14.0", | ||
"i18next": "^20.0.0", | ||
"i18next": "^23.4.4", | ||
"react": "^16.13.1 || ^17.0.0 || ^18.0.0", | ||
"react-i18next": "^11.3.4" | ||
}, | ||
|
@@ -62,14 +62,13 @@ | |
"@react-native-community/bob": "^0.10.0", | ||
"@types/enzyme": "^3.10.5", | ||
"@types/enzyme-adapter-react-16": "^1.0.6", | ||
"@types/jest": "^26.0.0", | ||
"@types/jest": "^29.5.2", | ||
"@types/node": "^14.0.0", | ||
"@types/react-native": "^0.70.7", | ||
"@types/react-test-renderer": "^17.0.0", | ||
"@types/react-test-renderer": "^18.0.0", | ||
"@typescript-eslint/eslint-plugin": "^4.0.0", | ||
"@typescript-eslint/parser": "^4.0.0", | ||
"babel-jest": "^26.0.0", | ||
"codecov": "^3.8.2", | ||
"date-fns": "^2.19.0", | ||
"enzyme": "^3.11.0", | ||
"enzyme-adapter-react-16": "^1.15.2", | ||
|
@@ -78,9 +77,9 @@ | |
"eslint-config-prettier": "^8.0.0", | ||
"eslint-plugin-react": "^7.19.0", | ||
"eslint-plugin-react-hooks": "^4.0.0", | ||
"i18next": "^20.0.0", | ||
"i18next": "^23.4.4", | ||
"identity-obj-proxy": "^3.0.0", | ||
"jest": "^26.0.0", | ||
"jest": "^29.5.0", | ||
"jest-enzyme": "^7.1.2", | ||
"jest-junit": "^12.0.0", | ||
"jsdom": "^16.2.2", | ||
|
@@ -90,7 +89,7 @@ | |
"react": "^18.0.0", | ||
"react-dom": "^18.0.0", | ||
"react-i18next": "^11.3.4", | ||
"react-test-renderer": "^17.0.0", | ||
"react-test-renderer": "^18.2.0", | ||
"typescript": "^4.8.4" | ||
}, | ||
"jest": { | ||
|
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.