@forsakringskassan/vite-lib-config 1.7.9 → 1.7.11
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/api-extractor.js +5 -4
- package/dist/vite.config.js +5 -4
- package/package.json +1 -1
package/dist/api-extractor.js
CHANGED
|
@@ -3510,10 +3510,11 @@ var Minimatch = class {
|
|
|
3510
3510
|
for (let i = 0; i < globParts.length - 1; i++) {
|
|
3511
3511
|
for (let j = i + 1; j < globParts.length; j++) {
|
|
3512
3512
|
const matched = this.partsMatch(globParts[i], globParts[j], !this.preserveMultipleSlashes);
|
|
3513
|
-
if (
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3513
|
+
if (matched) {
|
|
3514
|
+
globParts[i] = [];
|
|
3515
|
+
globParts[j] = matched;
|
|
3516
|
+
break;
|
|
3517
|
+
}
|
|
3517
3518
|
}
|
|
3518
3519
|
}
|
|
3519
3520
|
return globParts.filter((gs) => gs.length);
|
package/dist/vite.config.js
CHANGED
|
@@ -6988,10 +6988,11 @@ var Minimatch = class {
|
|
|
6988
6988
|
for (let i = 0; i < globParts.length - 1; i++) {
|
|
6989
6989
|
for (let j = i + 1; j < globParts.length; j++) {
|
|
6990
6990
|
const matched = this.partsMatch(globParts[i], globParts[j], !this.preserveMultipleSlashes);
|
|
6991
|
-
if (
|
|
6992
|
-
|
|
6993
|
-
|
|
6994
|
-
|
|
6991
|
+
if (matched) {
|
|
6992
|
+
globParts[i] = [];
|
|
6993
|
+
globParts[j] = matched;
|
|
6994
|
+
break;
|
|
6995
|
+
}
|
|
6995
6996
|
}
|
|
6996
6997
|
}
|
|
6997
6998
|
return globParts.filter((gs) => gs.length);
|