-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-bot <[email protected]> Co-authored-by: Jerrod Heiser <[email protected]>
- Loading branch information
1 parent
1da7612
commit 0d718be
Showing
38 changed files
with
270 additions
and
47 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,5 @@ | ||
--- | ||
'react-magma-docs': patch | ||
--- | ||
|
||
Update typos |
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,5 @@ | ||
--- | ||
'react-magma-dom': patch | ||
--- | ||
|
||
fix(Input Base): Fixed case where default value of `0` did not render the default value in the input field. |
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,5 @@ | ||
--- | ||
'react-magma-dom': patch | ||
--- | ||
|
||
fix(Input/Textarea): Fix `maxLength` console warning regarding passing a boolean attribute |
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,19 @@ | ||
{ | ||
"mode": "pre", | ||
"tag": "next", | ||
"initialVersions": { | ||
"@react-magma/charts": "4.0.1", | ||
"@react-magma/dropzone": "4.0.0", | ||
"react-magma-dom": "4.1.0", | ||
"@react-magma/schema-renderer": "4.0.0", | ||
"@cengage-patterns/header": "6.0.0", | ||
"react-magma-docs": "5.0.2", | ||
"react-magma-landing": "1.1.2" | ||
}, | ||
"changesets": [ | ||
"docs-typos", | ||
"fix-inputBase", | ||
"maxLength-warnings", | ||
"tabprops" | ||
] | ||
} |
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,5 @@ | ||
--- | ||
'react-magma-dom': patch | ||
--- | ||
|
||
docs(tabs): Update TabProps to remove `isActive`-- this component does not use it. use `activeIndex` on the `TabsContainer` to indicate the active tab. |
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,4 +1,4 @@ | ||
name: Publish Latest | ||
name: Publish Latest (main) | ||
on: | ||
push: | ||
branches: | ||
|
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,82 @@ | ||
name: Publish Next Patch (dev-patch) | ||
on: | ||
push: | ||
branches: | ||
- dev-patch | ||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Setup | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
check-latest: true | ||
- name: Check Node version | ||
run: node -v | ||
- name: Update NPM version | ||
run: npm install -g "npm@^7.6.3" | ||
- name: Install | ||
run: npm ci | ||
- name: Test | ||
run: npm test | ||
- name: Coverage | ||
uses: codecov/codecov-action@v1 | ||
- name: Configure NPM | ||
run: | | ||
git config --global user.name 'github-bot' | ||
git config --global user.email '[email protected]' | ||
echo //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }} > .npmrc | ||
- name: Check if Prerelease | ||
id: check_files | ||
uses: andstor/file-existence-action@v1 | ||
with: | ||
files: ".changeset/pre.json" | ||
- name: Enter Prerelease Mode | ||
if: steps.check_files.outputs.files_exists == 'false' | ||
run: | | ||
npm run version:prerelease | ||
git add .changeset/pre.json | ||
- name: Publish | ||
run: | | ||
npm run version:pkgs | ||
git commit -am "chore: enter prerelease mode" | ||
npm run release | ||
git push --follow-tags | ||
- name: Get Alias | ||
id: info | ||
run: | | ||
echo "::set-output name=alias::$(npm run --silent getAlias)" | ||
echo "::set-output name=version::$(npm run --silent getVersion)" | ||
- name: Build Docs | ||
run: npm run build:docs | ||
- name: Build Storybook | ||
run: npm run build:storybook | ||
- name: Deploy Docs to Netlify | ||
uses: nwtgck/[email protected] | ||
with: | ||
publish-dir: './website/react-magma-docs/public' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
deploy-message: 'Deploy from GitHub Actions' | ||
enable-pull-request-comment: true | ||
enable-commit-comment: true | ||
overwrites-pull-request-comment: true | ||
alias: next-patch | ||
env: | ||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | ||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | ||
- name: Deploy Dev Storybook to Netlify | ||
uses: nwtgck/[email protected] | ||
with: | ||
publish-dir: './storybook-static' | ||
production-branch: patch-3.x.x | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
enable-pull-request-comment: true | ||
enable-commit-comment: true | ||
overwrites-pull-request-comment: false | ||
alias: storybook-preview-dev-patch | ||
env: | ||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | ||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} |
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,4 +1,4 @@ | ||
name: Publish Next | ||
name: Publish Next (dev) | ||
on: | ||
push: | ||
branches: | ||
|
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,4 +1,4 @@ | ||
name: Publish Patch | ||
name: Publish Patch (patch-*) | ||
on: | ||
push: | ||
branches: | ||
|
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 @@ | ||
# @react-magma/charts | ||
|
||
## 4.0.2-next.0 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [871820e8d] | ||
- [email protected] | ||
|
||
## 4.0.1 | ||
|
||
### Patch Changes | ||
|
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,5 +1,12 @@ | ||
# Change Log | ||
|
||
## 4.0.1-next.0 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [871820e8d] | ||
- [email protected] | ||
|
||
## 4.0.0 | ||
|
||
## 4.0.0-next.1 | ||
|
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
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.
0d718be
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀 Deployed on https://4-1-1--upbeat-sinoussi-f675aa.netlify.app
0d718be
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉 Published on https://react-magma.cengage.com as production
🚀 Deployed on https://64affebe62407d075031a872--upbeat-sinoussi-f675aa.netlify.app