@jonit-dev/night-watch-cli 1.8.4-beta.6 → 1.8.4-beta.8
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/dist/cli.js +1 -1
- package/dist/web/assets/index-B-wbyZq7.js +386 -0
- package/dist/web/index.html +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -704,7 +704,7 @@ function normalizeConfig(rawConfig) {
|
|
|
704
704
|
const rawQueue = readObject(rawConfig.queue);
|
|
705
705
|
if (rawQueue) {
|
|
706
706
|
const rawMode = readString(rawQueue.mode);
|
|
707
|
-
const mode = rawMode === "conservative" || rawMode === "provider-aware" ? rawMode : DEFAULT_QUEUE.mode;
|
|
707
|
+
const mode = rawMode === "conservative" || rawMode === "provider-aware" || rawMode === "auto" ? rawMode : DEFAULT_QUEUE.mode;
|
|
708
708
|
const queue = {
|
|
709
709
|
enabled: readBoolean(rawQueue.enabled) ?? DEFAULT_QUEUE.enabled,
|
|
710
710
|
mode,
|