sku 12.3.2 → 12.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# sku
|
|
2
2
|
|
|
3
|
+
## 12.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Revert storybook config to CJS ([#873](https://github.com/seek-oss/sku/pull/873))
|
|
8
|
+
|
|
9
|
+
Fixes a bug where newer storybook versions (>=7.1.0) could not load sku's storybook config
|
|
10
|
+
|
|
3
11
|
## 12.3.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
module.exports = require('../config');
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
const fs = require('fs');
|
|
2
|
+
const path = require('path');
|
|
3
|
+
const {
|
|
4
|
+
paths,
|
|
5
|
+
storybookAddons,
|
|
6
|
+
storybookStoryStore,
|
|
7
|
+
} = require('../../context');
|
|
7
8
|
|
|
8
9
|
/** @type {import("@storybook/react-webpack5").StorybookConfig} */
|
|
9
|
-
|
|
10
|
+
module.exports = {
|
|
10
11
|
stories: paths.src
|
|
11
12
|
.filter((srcPath) => fs.statSync(srcPath).isDirectory())
|
|
12
13
|
.map((srcPath) => path.join(srcPath, '**/*.stories.@(js|ts|tsx)')),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
module.exports = require('../config');
|