Compare commits

..

6 Commits

4 changed files with 14 additions and 3 deletions

View File

@ -1,3 +1,14 @@
### **5.6.5** (2022-07-06)
- Merge pull request #133 from bardius/fix/Issue-131-include-all-nested-folders-in-artifact-unzip
fix: Issue-131: include all nested folders in artifact unzip
- Merge pull request #132 from bardius/fix/Issue-130-fix-equality-detection-of-nested-ftl-object-properties
fix: Issue-130: fix equality detection of nested ftl object property …
- fix: Issue-131: include all nested folders in artifact unzip
- fix: Issue-130: fix equality detection of nested ftl object property paths
### **5.6.4** (2022-07-06)
- Fix login-register-email.ftl

View File

@ -1,6 +1,6 @@
{
"name": "keycloakify",
"version": "5.6.4",
"version": "5.6.5",
"description": "Keycloak theme generator for Reacts app",
"repository": {
"type": "git",

View File

@ -305,7 +305,7 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
</#function>
<#function are_same_path path searchedPath>
<#if path?size != path?size>
<#if path?size != searchedPath?size>
<#return false>
</#if>

View File

@ -17,7 +17,7 @@ export function downloadAndUnzip(params: { url: string; destDirPath: string; pat
execSync(`curl -L ${url} -o ${zipFilePath}`, { "cwd": tmpDirPath });
execSync(`unzip ${zipFilePath}${pathOfDirToExtractInArchive === undefined ? "" : ` "${pathOfDirToExtractInArchive}/*"`}`, {
execSync(`unzip ${zipFilePath}${pathOfDirToExtractInArchive === undefined ? "" : ` "${pathOfDirToExtractInArchive}/**/*"`}`, {
"cwd": tmpDirPath,
});