Skip to content

Commit

Permalink
Merge pull request #30 from kevinashworth/fix-storybook
Browse files Browse the repository at this point in the history
Fix Storybook
  • Loading branch information
kevinashworth authored Jan 2, 2021
2 parents b59ff54 + 7a73ba2 commit 122f121
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 31 deletions.
4 changes: 3 additions & 1 deletion .storybook/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ module.exports = ({ config }) => {
{
plugins: [
'@babel/plugin-proposal-class-properties',
'@babel/plugin-syntax-dynamic-import'
'@babel/plugin-syntax-dynamic-import',
'@babel/plugin-proposal-optional-chaining',
'@babel/plugin-proposal-nullish-coalescing-operator'
]
}
]
Expand Down
25 changes: 4 additions & 21 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 4 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"name": "octave",
"version": "1.16.26",
"engines": {
"node": "12.x",
"npm": "^6.0"
},
"scripts": {
"start": "meteor --port 4004 --settings settings.json",
"start-debug": "meteor debug --port 4004 --settings settings.json",
Expand Down Expand Up @@ -152,7 +148,6 @@
"sanitize-html": "^2.3.0",
"simpl-schema": "^1.10.2",
"speakingurl": "^14.0.1",
"storybook-addon-intl": "^2.4.1",
"string-similarity": "^4.0.3",
"stripe": "^4.23.1",
"styled-components": "^5.2.1",
Expand All @@ -167,6 +162,8 @@
"devDependencies": {
"@apollo/react-testing": "^3.1.0",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
Expand Down Expand Up @@ -211,13 +208,11 @@
"sass-loader": "^10.1.0",
"scrap-meteor-loader": "0.0.1",
"start-server-and-test": "^1.11.7",
"storybook-addon-intl": "^2.4.1",
"storybook-addon-rtl": "^0.2.2",
"storybook-react-router": "^1.0.8",
"style-loader": "^2.0.0",
"vulcan-loader": "0.0.1",
"webpack": "^4.44.2"
},
"browserslist": [
"defaults"
]
}
}

0 comments on commit 122f121

Please sign in to comment.