Skip to content

Commit 899cc59

Browse files
committed
bump dev deps
1 parent ccc7c3c commit 899cc59

16 files changed

+31
-27
lines changed

.storybook/main.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import path from 'path';
12
import type { Configuration } from 'webpack';
23

34
module.exports = {
@@ -7,11 +8,11 @@ module.exports = {
78
{
89
name: '@storybook/addon-storysource',
910
options: {
10-
loaderOptions: {
11-
injectStoryParameters: false,
11+
rule: {
12+
test: [/\.stories\.(jsx?$|tsx?$)/],
13+
include: [path.resolve(__dirname, '../__stories__')],
1214
},
13-
sourceLoaderOptions: {
14-
parser: 'typescript',
15+
loaderOptions: {
1516
injectStoryParameters: false,
1617
},
1718
},

__stories__/helpers/components/OptionsCountButton.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ const OptionsCountButton: FunctionComponent<OptionsCountButtonProps> = ({
4040
const onClick = !isActive ? () => setOptionsCount(count) : undefined;
4141

4242
return (
43-
<StyledButton onClick={onClick} isActive={isActive}>
43+
<StyledButton
44+
onClick={onClick}
45+
isActive={isActive}
46+
>
4447
{numberWithCommas(count)}
4548
</StyledButton>
4649
);

__stories__/index.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -950,8 +950,8 @@ export const Async = () => {
950950
setOptions(createAsyncOptions(count, lblSuffix));
951951
setIsLoading(false);
952952
} catch (e) {
953-
setIsLoading(false);
954953
console.error(e);
954+
setIsLoading(false);
955955
}
956956
}, []);
957957

docs/asset-manifest.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"files": {
3-
"main.js": "./main.cc69b1a1c3461b97b509.bundle.js",
4-
"main.js.map": "./main.cc69b1a1c3461b97b509.bundle.js.map",
5-
"runtime~main.js": "./runtime~main.cc69b1a1c3461b97b509.bundle.js",
6-
"runtime~main.js.map": "./runtime~main.cc69b1a1c3461b97b509.bundle.js.map",
7-
"vendors~main.js": "./vendors~main.cc69b1a1c3461b97b509.bundle.js",
8-
"vendors~main.js.map": "./vendors~main.cc69b1a1c3461b97b509.bundle.js.map",
3+
"main.js": "./main.8414e18ade30256556fe.bundle.js",
4+
"main.js.map": "./main.8414e18ade30256556fe.bundle.js.map",
5+
"runtime~main.js": "./runtime~main.8414e18ade30256556fe.bundle.js",
6+
"runtime~main.js.map": "./runtime~main.8414e18ade30256556fe.bundle.js.map",
7+
"vendors~main.js": "./vendors~main.8414e18ade30256556fe.bundle.js",
8+
"vendors~main.js.map": "./vendors~main.8414e18ade30256556fe.bundle.js.map",
99
"iframe.html": "./iframe.html",
10-
"vendors~main.cc69b1a1c3461b97b509.bundle.js.LICENSE.txt": "./vendors~main.cc69b1a1c3461b97b509.bundle.js.LICENSE.txt"
10+
"vendors~main.8414e18ade30256556fe.bundle.js.LICENSE.txt": "./vendors~main.8414e18ade30256556fe.bundle.js.LICENSE.txt"
1111
},
1212
"entrypoints": [
13-
"runtime~main.cc69b1a1c3461b97b509.bundle.js",
14-
"vendors~main.cc69b1a1c3461b97b509.bundle.js",
15-
"main.cc69b1a1c3461b97b509.bundle.js"
13+
"runtime~main.8414e18ade30256556fe.bundle.js",
14+
"vendors~main.8414e18ade30256556fe.bundle.js",
15+
"main.8414e18ade30256556fe.bundle.js"
1616
]
1717
}

docs/iframe.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,4 @@
130130

131131

132132

133-
window['FRAMEWORK_OPTIONS'] = {};</script><script src="runtime~main.cc69b1a1c3461b97b509.bundle.js"></script><script src="vendors~main.cc69b1a1c3461b97b509.bundle.js"></script><script src="main.cc69b1a1c3461b97b509.bundle.js"></script></body></html>
133+
window['FRAMEWORK_OPTIONS'] = {};</script><script src="runtime~main.8414e18ade30256556fe.bundle.js"></script><script src="vendors~main.8414e18ade30256556fe.bundle.js"></script><script src="main.8414e18ade30256556fe.bundle.js"></script></body></html>
Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/main.8414e18ade30256556fe.bundle.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/main.cc69b1a1c3461b97b509.bundle.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/runtime~main.cc69b1a1c3461b97b509.bundle.js renamed to docs/runtime~main.8414e18ade30256556fe.bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/runtime~main.8414e18ade30256556fe.bundle.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)