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: "false"
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(`/^${escaped}$/i`)
89
- : new RegExp(`/${escaped}/i`);
88
+ ? new RegExp(`^${escaped}$`, `i`)
89
+ : new RegExp(`${escaped}`, `i`);
90
90
  }
91
91
  function createRegExpFrom(s) {
92
92
  if (s.endsWith('/')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.175.5",
3
+ "version": "1.175.7",
4
4
  "description": "Some glue to make gulp easier, perhaps even zero- or close-to-zero-conf",
5
5
  "bin": {
6
6
  "zarro": "index.js"