dcp-client 5.0.4 → 5.1.1
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/.gitattributes +2 -0
- package/assets/dcp-client.css +16 -0
- package/assets/lucide/bug.svg +1 -0
- package/assets/lucide/circle-alert.svg +1 -0
- package/assets/lucide/hard-drive-upload.svg +1 -0
- package/assets/lucide/triangle-alert.svg +1 -0
- package/assets/x.svg +1 -0
- package/bin/dcp-config-value +2 -2
- package/bin/dcp-module-bundler +149 -0
- package/build/bundle +1 -1
- package/dcp-client.js +26 -13
- package/dist/dcp-client-bundle.js +1 -1
- package/dist/dcp-client-bundle.js.map +1 -1
- package/examples/nodejs/simple-job.js +3 -0
- package/index.js +359 -224
- package/index.py +1 -0
- package/lib/standaloneWorker.js +38 -3
- package/ns-map.js +1 -0
- package/os-basic.py +13 -0
- package/package.json +8 -3
- package/test-helpers/attempt-to-fetch.js +2 -2
- package/templates/alert-modal.html +0 -26
- package/templates/confirm-modal.html +0 -27
- package/templates/dcp-modal.css +0 -365
- package/templates/keystore-file-modal.html +0 -22
- package/templates/oauth-login-modal.html +0 -18
- package/templates/password-creation-modal.html +0 -29
- package/templates/password-entry-modal.html +0 -24
|
@@ -38,6 +38,9 @@ function addJobEventListeners(job)
|
|
|
38
38
|
async function main()
|
|
39
39
|
{
|
|
40
40
|
const compute = require('dcp/compute');
|
|
41
|
+
console.log(dcpConfig.scheduler.location.href);
|
|
42
|
+
console.log(dcpConfig.scheduler.services.resultSubmitter.location.href);
|
|
43
|
+
console.log(dcpConfig.scheduler.services.eventRouter.location.href);
|
|
41
44
|
|
|
42
45
|
// Creates a Job for the distributed computer.
|
|
43
46
|
// https://docs.dcp.dev/specs/compute-api.html#compute-for
|