@adobe-commerce/elsie 2.1.0-beta.0 → 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 +24 -0
- package/bin/builders/concurrently/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
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
|
+
|
|
15
|
+
## 2.1.0-beta.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 1256599: Cap the `eslint-plugin-cypress` peer dependency range at `<7.0.0`.
|
|
20
|
+
The unbounded `>=3.0.0` range let npm's resolver consider
|
|
21
|
+
`eslint-plugin-cypress@7`, which peer-requires `eslint@>=10` and conflicts
|
|
22
|
+
with elsie's own `eslint@^9.39.5` dependency — even though
|
|
23
|
+
`eslint-plugin-cypress` remains an optional peer. Versions up to `6.4.4` still
|
|
24
|
+
support `eslint@>=9`, so the range now stays within what's actually
|
|
25
|
+
compatible.
|
|
26
|
+
|
|
3
27
|
## 2.1.0-beta.0
|
|
4
28
|
|
|
5
29
|
### Minor 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') {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe-commerce/elsie",
|
|
3
|
-
"version": "2.1.0-beta.
|
|
3
|
+
"version": "2.1.0-beta.2",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"description": "Domain Package SDK",
|
|
6
6
|
"engines": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@dropins/build-tools": "~1.2.1"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"eslint-plugin-cypress": ">=3.0.0"
|
|
41
|
+
"eslint-plugin-cypress": ">=3.0.0 <7.0.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependenciesMeta": {
|
|
44
44
|
"eslint-plugin-cypress": {
|