keycloakify 7.9.1 → 7.9.2

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.
@@ -4,5 +4,5 @@ exports.resourcesCommonDirPathRelativeToPublicDir = exports.resourcesDirPathRela
4
4
  var pathJoin_1 = require("./tools/pathJoin");
5
5
  exports.basenameOfKeycloakDirInPublicDir = "keycloak-resources";
6
6
  exports.resourcesDirPathRelativeToPublicDir = (0, pathJoin_1.pathJoin)(exports.basenameOfKeycloakDirInPublicDir, "resources");
7
- exports.resourcesCommonDirPathRelativeToPublicDir = (0, pathJoin_1.pathJoin)(exports.basenameOfKeycloakDirInPublicDir, "resources_common");
7
+ exports.resourcesCommonDirPathRelativeToPublicDir = (0, pathJoin_1.pathJoin)(exports.resourcesDirPathRelativeToPublicDir, "resources_common");
8
8
  //# sourceMappingURL=mockTestingResourcesPath.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"mockTestingResourcesPath.js","sourceRoot":"","sources":["../src/bin/mockTestingResourcesPath.ts"],"names":[],"mappings":";;;AAAA,6CAA4C;AAE/B,QAAA,gCAAgC,GAAG,oBAAoB,CAAC;AACxD,QAAA,mCAAmC,GAAG,IAAA,mBAAQ,EAAC,wCAAgC,EAAE,WAAW,CAAC,CAAC;AAC9F,QAAA,yCAAyC,GAAG,IAAA,mBAAQ,EAAC,wCAAgC,EAAE,kBAAkB,CAAC,CAAC"}
1
+ {"version":3,"file":"mockTestingResourcesPath.js","sourceRoot":"","sources":["../src/bin/mockTestingResourcesPath.ts"],"names":[],"mappings":";;;AAAA,6CAA4C;AAE/B,QAAA,gCAAgC,GAAG,oBAAoB,CAAC;AACxD,QAAA,mCAAmC,GAAG,IAAA,mBAAQ,EAAC,wCAAgC,EAAE,WAAW,CAAC,CAAC;AAC9F,QAAA,yCAAyC,GAAG,IAAA,mBAAQ,EAAC,2CAAmC,EAAE,kBAAkB,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "7.9.1",
3
+ "version": "7.9.2",
4
4
  "description": "Create Keycloak themes using React",
5
5
  "repository": {
6
6
  "type": "git",
@@ -2,4 +2,4 @@ import { pathJoin } from "./tools/pathJoin";
2
2
 
3
3
  export const basenameOfKeycloakDirInPublicDir = "keycloak-resources";
4
4
  export const resourcesDirPathRelativeToPublicDir = pathJoin(basenameOfKeycloakDirInPublicDir, "resources");
5
- export const resourcesCommonDirPathRelativeToPublicDir = pathJoin(basenameOfKeycloakDirInPublicDir, "resources_common");
5
+ export const resourcesCommonDirPathRelativeToPublicDir = pathJoin(resourcesDirPathRelativeToPublicDir, "resources_common");