@resistdesign/voltra 3.0.0-alpha.38 → 3.0.0-alpha.39

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.
Files changed (2) hide show
  1. package/app/index.js +2 -2
  2. package/package.json +1 -1
package/app/index.js CHANGED
@@ -144,10 +144,10 @@ var getFullUrl = (protocol, domain, basePath = "", path = "", port) => {
144
144
  path,
145
145
  PATH_DELIMITER,
146
146
  false,
147
- false,
147
+ true,
148
148
  false
149
149
  );
150
- const normalizedPath = fullPath ? fullPath.startsWith(PATH_DELIMITER) ? fullPath : `${PATH_DELIMITER}${fullPath}` : "";
150
+ const normalizedPath = fullPath ? fullPath.startsWith(PATH_DELIMITER) ? fullPath : `${PATH_DELIMITER}${fullPath}` : PATH_DELIMITER;
151
151
  return `${normalizedProtocol}://${normalizedDomain}${portString}${normalizedPath}`;
152
152
  };
153
153
  var sendServiceRequest = async (config, path = "", args = []) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resistdesign/voltra",
3
- "version": "3.0.0-alpha.38",
3
+ "version": "3.0.0-alpha.39",
4
4
  "description": "With our powers combined!",
5
5
  "homepage": "https://voltra.app",
6
6
  "repository": "git@github.com:resistdesign/voltra.git",