@computesdk/workbench 20.0.2 → 21.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/dist/bin/workbench.js +4 -0
- package/dist/bin/workbench.js.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +26 -18
package/dist/bin/workbench.js
CHANGED
|
@@ -566,6 +566,10 @@ async function loadProvider(providerName) {
|
|
|
566
566
|
return await import("@computesdk/sprites");
|
|
567
567
|
case "freestyle":
|
|
568
568
|
return await import("@computesdk/freestyle");
|
|
569
|
+
case "secure-exec":
|
|
570
|
+
return await import("@computesdk/secure-exec");
|
|
571
|
+
case "upstash":
|
|
572
|
+
return await import("@computesdk/upstash");
|
|
569
573
|
default:
|
|
570
574
|
throw new Error(`Unknown provider: ${providerName}`);
|
|
571
575
|
}
|