getprismo 0.1.35 → 0.1.36
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/lib/prismo-dev/agent.js +1 -1
- package/lib/prismo-dev/cli.js +1 -1
- package/package.json +1 -1
package/lib/prismo-dev/agent.js
CHANGED
|
@@ -15,7 +15,7 @@ module.exports = function createAgent(deps) {
|
|
|
15
15
|
openUrl,
|
|
16
16
|
} = deps;
|
|
17
17
|
|
|
18
|
-
const DEFAULT_WORKSPACE_URL = "https://
|
|
18
|
+
const DEFAULT_WORKSPACE_URL = "https://getprismo.dev/dashboard/dev";
|
|
19
19
|
|
|
20
20
|
const DEFAULT_API_URL = "https://api.getprismo.dev";
|
|
21
21
|
const TERMINAL_STATUSES = new Set(["completed", "failed", "cancelled"]);
|
package/lib/prismo-dev/cli.js
CHANGED
|
@@ -323,7 +323,7 @@ function createCli(deps) {
|
|
|
323
323
|
limit: parsePositiveInt(limitIndex >= 0 ? rest[limitIndex + 1] : null, 20),
|
|
324
324
|
});
|
|
325
325
|
if (result.connected && (rest.includes("--open") || !rest.includes("--no-open"))) {
|
|
326
|
-
openUrl("https://
|
|
326
|
+
openUrl("https://getprismo.dev/dashboard/dev");
|
|
327
327
|
}
|
|
328
328
|
if (json) console.log(JSON.stringify(result, null, 2));
|
|
329
329
|
else console.log(renderConnectTerminal(result));
|
package/package.json
CHANGED