@mycelium-sdk/core 1.0.0-alpha.1 → 1.0.0
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/README.md +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +20 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -175,7 +175,7 @@ git clone https://github.com/MyceliumSDK/mycelium-sdk.git
|
|
|
175
175
|
cd packages/cli && pnpm install
|
|
176
176
|
```
|
|
177
177
|
|
|
178
|
-
3. Setup the CLI settings based on the README.md file
|
|
178
|
+
3. Setup the CLI settings based on the [README.md](https://github.com/MyceliumSDK/mycelium-sdk/blob/main/packages/cli/README.md) file
|
|
179
179
|
|
|
180
180
|
4. Instal the latest SDK version:
|
|
181
181
|
|
package/dist/index.cjs
CHANGED
|
@@ -2483,7 +2483,7 @@ var ProtocolsNamespace = class {
|
|
|
2483
2483
|
};
|
|
2484
2484
|
|
|
2485
2485
|
// src/constants/general.ts
|
|
2486
|
-
var BACKEND_HOSTNAME = "http://localhost:3000";
|
|
2486
|
+
var BACKEND_HOSTNAME = process.env.NODE_ENV === "dev" ? "http://localhost:3000" : "https://mycelium-cloud-production.up.railway.app";
|
|
2487
2487
|
|
|
2488
2488
|
// src/tools/ApiClient.ts
|
|
2489
2489
|
var import_axios2 = __toESM(require("axios"), 1);
|