zarro 1.175.4 → 1.175.5
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.
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
if (!hasEnoughParts) {
|
|
69
69
|
return new RegExp(s, "i");
|
|
70
70
|
}
|
|
71
|
-
const startsWithSlash = parts[0] === "", endsWithSlash = parts[parts.length - 1] === "", finalSlashIsEscaped = hasEnoughParts &&
|
|
71
|
+
const startsWithSlash = parts[0] === "", endsWithSlash = parts[parts.length - 1] === "", finalSlashIsEscaped = hasEnoughParts && parts[parts.length - 2].endsWith("\\"), isEz = startsWithSlash && endsWithSlash && !finalSlashIsEscaped;
|
|
72
72
|
if (isEz) {
|
|
73
73
|
let re = s;
|
|
74
74
|
if (startsWithSlash) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zarro",
|
|
3
|
-
"version": "1.175.
|
|
3
|
+
"version": "1.175.5",
|
|
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"
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"start": "node index.js",
|
|
28
28
|
"zarro": "node index.js",
|
|
29
29
|
"increment-package-version-beta": "cross-env VERSION_INCREMENT_STRATEGY=patch run-s \"zarro increment-package-json-version\"",
|
|
30
|
-
"prerelease-beta": "run-s build verify-no-debugger test
|
|
31
|
-
"release-beta": "cross-env BETA=1 run-s \"zarro release-npm\"",
|
|
30
|
+
"prerelease-beta": "run-s build verify-no-debugger test",
|
|
31
|
+
"release-beta": "cross-env VERSION_INCREMENT_STRATEGY=patch BETA=1 run-s \"zarro release-npm\"",
|
|
32
32
|
"prerelease": "run-s verify-up-to-date test",
|
|
33
33
|
"release": "cross-env VERSION_INCREMENT_STRATEGY=minor run-s \"zarro release-npm\"",
|
|
34
34
|
"pull-gulp-tasks": "cd gulp-tasks && git checkout master && git pull --rebase",
|