Skip to content

Commit

Permalink
Merge pull request #123 from performant-software/feature/rc121_upgrad…
Browse files Browse the repository at this point in the history
…e_dependencies

RC #121 - Upgrade dependencies
  • Loading branch information
dleadbetter authored Apr 14, 2022
2 parents 33f8e92 + f3ce745 commit 442eb4d
Show file tree
Hide file tree
Showing 83 changed files with 41,159 additions and 16,488 deletions.
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

0 comments on commit 442eb4d

Please sign in to comment.