keycloakify 10.0.0-rc.60 → 10.0.0-rc.61
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/bin/991.index.js
CHANGED
@@ -546,7 +546,7 @@ async function extractArchive(params) {
|
|
546
546
|
zipFile.on("entry", async (entry) => {
|
547
547
|
handle_file: {
|
548
548
|
// NOTE: Skip directories
|
549
|
-
if (entry.fileName.endsWith(
|
549
|
+
if (entry.fileName.endsWith("/")) {
|
550
550
|
break handle_file;
|
551
551
|
}
|
552
552
|
let hasEarlyExitBeenCalled = false;
|
package/package.json
CHANGED
@@ -109,7 +109,7 @@ export async function extractArchive(params: {
|
|
109
109
|
zipFile.on("entry", async (entry: yauzl.Entry) => {
|
110
110
|
handle_file: {
|
111
111
|
// NOTE: Skip directories
|
112
|
-
if (entry.fileName.endsWith(
|
112
|
+
if (entry.fileName.endsWith("/")) {
|
113
113
|
break handle_file;
|
114
114
|
}
|
115
115
|
|
package/vite-plugin/index.js
CHANGED
@@ -4542,7 +4542,7 @@ async function extractArchive(params) {
|
|
4542
4542
|
zipFile.on("entry", async (entry) => {
|
4543
4543
|
handle_file: {
|
4544
4544
|
// NOTE: Skip directories
|
4545
|
-
if (entry.fileName.endsWith(
|
4545
|
+
if (entry.fileName.endsWith("/")) {
|
4546
4546
|
break handle_file;
|
4547
4547
|
}
|
4548
4548
|
let hasEarlyExitBeenCalled = false;
|