-
-
Notifications
You must be signed in to change notification settings - Fork 72
Update table dependencies #814
Changes from all commits
a1863d7
cef89fa
db0a011
8a4fd30
b4268bf
af0c8f4
af9a274
c147d80
1cfa4b7
bcd1ef4
5380313
9b0a5d5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| { | ||
| "tabWidth": 4, | ||
| "singleQuote": true, | ||
| "jsxSingleQuote": true, | ||
| "arrowParens": "avoid", | ||
| "bracketSpacing": false, | ||
| "trailingComma": "none" | ||
| } |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| const path = require('path'); | ||
|
|
||
| const baseConfig = require('./../.config/webpack/base.js')({ | ||
| ts: { | ||
| transpileOnly: true | ||
| }, | ||
| preprocessor: { | ||
| variables: { | ||
| mode: 'eager' | ||
| } | ||
| } | ||
| }); | ||
|
|
||
| module.exports = { | ||
| stories: ['./../tests/visual/percy-storybook/**/*.percy.tsx'], | ||
| webpackFinal: async (config, { configType }) => { | ||
| // jerry rig everything | ||
| config.resolve.alias.core = path.resolve(__dirname, './../src/core'), | ||
| config.resolve.alias['dash-table'] = path.resolve(__dirname, './../src/dash-table') | ||
|
|
||
| config.module = baseConfig.module; | ||
|
|
||
| return config; | ||
| } | ||
| }; | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Storybook 6 brings totally new configuration files and opinions. Making it work with our own needs..
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Marc-Andre-Rivet For any package using Storybook >=6, I imagine we now have to add config.resolve.alias['dash-table'] = path.resolve(__dirname, './../src/dash-table')but specific to the path/package name?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. But the table is the only project using storybook. |
||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.