zarro 1.175.5 → 1.175.7
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.
|
@@ -483,7 +483,7 @@
|
|
|
483
483
|
env.register({
|
|
484
484
|
name: "UPGRADE_PACKAGES_NO_RESTORE",
|
|
485
485
|
help: "Flag: when set truthy (default), don't actively restore packages (next build will do so) - makes the process faster",
|
|
486
|
-
default: "
|
|
486
|
+
default: "true"
|
|
487
487
|
});
|
|
488
488
|
env.register({
|
|
489
489
|
name: "PACK_INCLUDE_CSPROJ",
|
|
@@ -85,8 +85,8 @@
|
|
|
85
85
|
function makeRegex(s, strict) {
|
|
86
86
|
const escaped = s.replace(".", "\\.");
|
|
87
87
|
return strict
|
|
88
|
-
? new RegExp(
|
|
89
|
-
: new RegExp(
|
|
88
|
+
? new RegExp(`^${escaped}$`, `i`)
|
|
89
|
+
: new RegExp(`${escaped}`, `i`);
|
|
90
90
|
}
|
|
91
91
|
function createRegExpFrom(s) {
|
|
92
92
|
if (s.endsWith('/')) {
|