sku 12.4.10 → 12.4.11
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 +19 -0
- package/package.json +2 -2
- package/scripts/storybook.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# sku
|
|
2
2
|
|
|
3
|
+
## 12.4.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Update `webpack-dev-server` to v5 ([#930](https://github.com/seek-oss/sku/pull/930))
|
|
8
|
+
|
|
9
|
+
- Stop passing `--quiet` flag to the Storybook CLI when running `sku storybook` ([#929](https://github.com/seek-oss/sku/pull/929))
|
|
10
|
+
|
|
11
|
+
This flag was added to suppress verbose CLI output, but as of [Storybook CLI v7.1.0][release notes] this also hides the dev server info which includes the URL to access the Storybook UI.
|
|
12
|
+
|
|
13
|
+
The flag has now been removed to provide a better default experience when using the Storybook CLI.
|
|
14
|
+
Users can still pass `--quiet` to suppress verbose output if desired:
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
pnpm run sku storybook --quiet
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[release notes]: https://github.com/storybookjs/storybook/releases/tag/v7.1.0-alpha.38
|
|
21
|
+
|
|
3
22
|
## 12.4.10
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sku",
|
|
3
|
-
"version": "12.4.
|
|
3
|
+
"version": "12.4.11",
|
|
4
4
|
"description": "Front-end development toolkit, powered by Webpack, Babel, CSS Modules, Less and Jest",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"validate-npm-package-name": "^5.0.0",
|
|
120
120
|
"webpack": "^5.52.0",
|
|
121
121
|
"webpack-bundle-analyzer": "^4.6.1",
|
|
122
|
-
"webpack-dev-server": "^
|
|
122
|
+
"webpack-dev-server": "^5.0.2",
|
|
123
123
|
"webpack-merge": "^5.8.0",
|
|
124
124
|
"webpack-node-externals": "^3.0.0",
|
|
125
125
|
"which": "^4.0.0",
|
package/scripts/storybook.js
CHANGED
|
@@ -6,7 +6,6 @@ const { watchVocabCompile } = require('../lib/runVocab');
|
|
|
6
6
|
const { setUpStorybookConfigDirectory } = require('../lib/storybook');
|
|
7
7
|
|
|
8
8
|
// Unshift args to allow pushing --ci as an arg during storybook-config tests
|
|
9
|
-
argv.unshift('--quiet');
|
|
10
9
|
argv.unshift('--port', storybookPort);
|
|
11
10
|
argv.unshift('dev');
|
|
12
11
|
|