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

RC #121 - Upgrade dependencies #123

Merged
merged 20 commits into from
Apr 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2aa48eb
RC #121 - Upgrading dependencies for React, Webpack, Semantic UI; Rep…
dleadbetter Apr 7, 2022
228914c
RC #121 - Fixing Flow types errors and ESLint errors
dleadbetter Apr 7, 2022
8e7a6b5
RC #121 - Adding deployment via GitHub pages
dleadbetter Apr 8, 2022
8374073
RC #121 - Testing triggering a change to GitHub Pages
dleadbetter Apr 8, 2022
1c37365
RC #121 - Updating deploy branch for testing
dleadbetter Apr 8, 2022
e59cb5d
Deploying to feature/rc121_upgrade_dependencies from @ 1c37365cf8a01…
dleadbetter Apr 8, 2022
7369d1a
RC #121 - Setting GitHub Pages branch back to "master"
dleadbetter Apr 8, 2022
91a2118
Merge branch 'feature/rc121_upgrade_dependencies' of https://github.c…
dleadbetter Apr 8, 2022
3e382fe
Merge branch 'master' of https://github.com/performant-software/react…
dleadbetter Apr 8, 2022
ff7a1bc
RC #121 - Updating ViewXML component to import styles from commonJS d…
dleadbetter Apr 8, 2022
7c1aa48
RC #121 - Removing highlighter selection from ViewXML component; High…
dleadbetter Apr 8, 2022
106cafd
RC #121 - Testing adding react-syntax-highlighter to nodeExternals al…
dleadbetter Apr 8, 2022
a8b8338
RC #121 - Removing react-syntax-highlighter to nodeExternals allow li…
dleadbetter Apr 8, 2022
6cf2707
RC #121 - Updating webpack to transpile react-syntax-highlighter
dleadbetter Apr 8, 2022
027654c
RC #121 - Testing using UMD target instead of commonjs
dleadbetter Apr 8, 2022
a8f63ce
RC #121 - Updating webpack.config back to commonjs2 library target
dleadbetter Apr 8, 2022
2086281
RC #121 - Updating webpack to transpile react-syntax-highlighter
dleadbetter Apr 8, 2022
acd0e01
RC #121 - Removing default container style from GoogleMap component
dleadbetter Apr 8, 2022
6b4aca0
RC #121 - Adding default height to GoogleMap component
dleadbetter Apr 8, 2022
f3ce745
RC #121 - Extracting Google script loader to separate component
dleadbetter Apr 8, 2022
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 .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"max-len": ["error", { "code": 120 }],
"no-underscore-dangle": "off",
"no-use-before-define": "off",
"import/prefer-default-export": "off",
"react/default-props-match-prop-types": "off",
"react/destructuring-assignment": "off",
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
Expand Down
1 change: 1 addition & 0 deletions .flowconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[ignore]
<PROJECT_ROOT>/types/.*

[include]

Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build and Deploy
on:
push:
paths: ["stories/**", "src/**"] # Trigger the action only when files change in the folders defined here
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
with:
persist-credentials: false
- name: Install and Build 🔧
run: | # Install npm packages and build the Storybook files
npm install
npm run build-storybook
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: master # The branch the action should deploy to.
FOLDER: docs-build # The folder that the build-storybook script generates files.
CLEAN: true # Automatically remove deleted files from the deploy branch
TARGET_FOLDER: docs # The folder that we serve our Storybook files from
11 changes: 6 additions & 5 deletions .storybook/main.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
module.exports = {
stories: [
'../stories/**/*.stories.js'
],
stories: ['../stories/**/*.stories.js'],
addons: [
'@storybook/addon-a11y/register',
'@storybook/addon-a11y',
'@storybook/addon-actions',
'@storybook/addon-knobs/register',
'@storybook/addon-knobs',
'@storybook/addon-links'
],
core: {
builder: "webpack5"
}
};
1 change: 1 addition & 0 deletions docs/main.4bbda82b.iframe.bundle.js

Large diffs are not rendered by default.

Loading