keycloakify 11.8.8 → 11.8.9
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/97.index.js
CHANGED
@@ -2014,6 +2014,24 @@ async function command(params) {
|
|
2014
2014
|
}
|
2015
2015
|
return;
|
2016
2016
|
}
|
2017
|
+
ignore_patternfly: {
|
2018
|
+
if (!(0,isInside/* isInside */.V)({
|
2019
|
+
dirPath: (0,external_path_.join)(buildContext.themeSrcDirPath, "shared", "@patternfly"),
|
2020
|
+
filePath
|
2021
|
+
})) {
|
2022
|
+
break ignore_patternfly;
|
2023
|
+
}
|
2024
|
+
return;
|
2025
|
+
}
|
2026
|
+
ignore_keycloak_ui_shared: {
|
2027
|
+
if (!(0,isInside/* isInside */.V)({
|
2028
|
+
dirPath: (0,external_path_.join)(buildContext.themeSrcDirPath, "shared", "keycloak-ui-shared"),
|
2029
|
+
filePath
|
2030
|
+
})) {
|
2031
|
+
break ignore_keycloak_ui_shared;
|
2032
|
+
}
|
2033
|
+
return;
|
2034
|
+
}
|
2017
2035
|
}
|
2018
2036
|
console.log(`Detected changes in ${filePath}`);
|
2019
2037
|
await waitForDebounce();
|
package/package.json
CHANGED
@@ -781,6 +781,40 @@ export async function command(params: {
|
|
781
781
|
|
782
782
|
return;
|
783
783
|
}
|
784
|
+
|
785
|
+
ignore_patternfly: {
|
786
|
+
if (
|
787
|
+
!isInside({
|
788
|
+
dirPath: pathJoin(
|
789
|
+
buildContext.themeSrcDirPath,
|
790
|
+
"shared",
|
791
|
+
"@patternfly"
|
792
|
+
),
|
793
|
+
filePath
|
794
|
+
})
|
795
|
+
) {
|
796
|
+
break ignore_patternfly;
|
797
|
+
}
|
798
|
+
|
799
|
+
return;
|
800
|
+
}
|
801
|
+
|
802
|
+
ignore_keycloak_ui_shared: {
|
803
|
+
if (
|
804
|
+
!isInside({
|
805
|
+
dirPath: pathJoin(
|
806
|
+
buildContext.themeSrcDirPath,
|
807
|
+
"shared",
|
808
|
+
"keycloak-ui-shared"
|
809
|
+
),
|
810
|
+
filePath
|
811
|
+
})
|
812
|
+
) {
|
813
|
+
break ignore_keycloak_ui_shared;
|
814
|
+
}
|
815
|
+
|
816
|
+
return;
|
817
|
+
}
|
784
818
|
}
|
785
819
|
|
786
820
|
console.log(`Detected changes in ${filePath}`);
|