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

Update dependencies #73

Closed
wants to merge 14 commits into from
Closed
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 0 additions & 12 deletions .eslintrc
Expand Up @@ -34,7 +34,6 @@
"jest/no-identical-title": "error",
"jest/prefer-to-have-length": "warn",
"jest/valid-expect": "error",
"valid-jsdoc": "off",
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm removing jsdoc, has been mostly unused and we can document components in better ways.

"comma-dangle": [
"error",
{
Expand Down Expand Up @@ -72,17 +71,6 @@
"pragma": "React",
"version": "detect"
},
"jsdoc": {
"return": "returns",
"constructor": "constructor",
"prop": "property",
"arg": "param",
"augments": "extends",
"description": false,
"desc": false,
"inheritdoc": false,
"class": false
},
"overrides": [
{
"files": "*.mdx",
Expand Down
1 change: 1 addition & 0 deletions .npmrc
@@ -0,0 +1 @@
legacy-peer-deps=true
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Temporary fix for node v8.6.

2 changes: 1 addition & 1 deletion .storybook/main.js
@@ -1,5 +1,6 @@
module.exports = {
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx|mdx)'],
staticDirs: ['../public'],
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Setting the static directory in package.json was deprecated, it has to be set here instead.

addons: [
// Official addons
'@storybook/addon-links',
Expand All @@ -12,7 +13,6 @@ module.exports = {

// Community addons
'storybook-mobile',
'storybook-addon-mdx-embed',
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unused dependency.

],
core: {
builder: 'webpack5',
Expand Down