@ubiquity-os/plugin-sdk 3.1.7 → 3.1.8
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -101,7 +101,7 @@ var DenoRuntimeInfo = class extends PluginRuntimeInfo {
|
|
|
101
101
|
}
|
|
102
102
|
get runUrl() {
|
|
103
103
|
const projectName = Deno.env.get("DENO_PROJECT_NAME");
|
|
104
|
-
const baseUrl = `https://dash.deno.com/
|
|
104
|
+
const baseUrl = `https://dash.deno.com/projects/${projectName}/logs`;
|
|
105
105
|
const start = new Date(Date.now() - 6e4).toISOString();
|
|
106
106
|
const end = new Date(Date.now() + 6e4).toISOString();
|
|
107
107
|
const filters = {
|
package/dist/index.mjs
CHANGED
|
@@ -63,7 +63,7 @@ var DenoRuntimeInfo = class extends PluginRuntimeInfo {
|
|
|
63
63
|
}
|
|
64
64
|
get runUrl() {
|
|
65
65
|
const projectName = Deno.env.get("DENO_PROJECT_NAME");
|
|
66
|
-
const baseUrl = `https://dash.deno.com/
|
|
66
|
+
const baseUrl = `https://dash.deno.com/projects/${projectName}/logs`;
|
|
67
67
|
const start = new Date(Date.now() - 6e4).toISOString();
|
|
68
68
|
const end = new Date(Date.now() + 6e4).toISOString();
|
|
69
69
|
const filters = {
|