@adobe-commerce/elsie 2.1.0-beta.1 → 2.1.0-beta.2
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 +12 -0
- package/bin/builders/concurrently/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @adobe-commerce/elsie
|
|
2
2
|
|
|
3
|
+
## 2.1.0-beta.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fe6e31d: Fix the `elsie concurrently` builder passing `killOthers` to the
|
|
8
|
+
`concurrently` package, which was renamed to `killOthersOn` in
|
|
9
|
+
`concurrently@10`. Since `concurrently` doesn't validate unknown options, the
|
|
10
|
+
mismatch silently no-opped `-k`/`--kill-others`, leaving sibling processes
|
|
11
|
+
(e.g. the `http-server` serving `storybook-static`) running after another
|
|
12
|
+
process in the group exited — hanging commands like `test-storybook-ci` until
|
|
13
|
+
an external timeout killed them.
|
|
14
|
+
|
|
3
15
|
## 2.1.0-beta.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -17,7 +17,7 @@ module.exports = function concurrentlyBuilder() {
|
|
|
17
17
|
const commands = argv._;
|
|
18
18
|
|
|
19
19
|
const options = {
|
|
20
|
-
|
|
20
|
+
killOthersOn: argv.killOthers ? ['success', 'failure'] : ['failure'],
|
|
21
21
|
};
|
|
22
22
|
|
|
23
23
|
if (argv.success !== 'all') {
|