@computesdk/workbench 20.0.1 → 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/index.js
CHANGED
|
@@ -561,6 +561,10 @@ async function loadProvider(providerName) {
|
|
|
561
561
|
return await import("@computesdk/sprites");
|
|
562
562
|
case "freestyle":
|
|
563
563
|
return await import("@computesdk/freestyle");
|
|
564
|
+
case "secure-exec":
|
|
565
|
+
return await import("@computesdk/secure-exec");
|
|
566
|
+
case "upstash":
|
|
567
|
+
return await import("@computesdk/upstash");
|
|
564
568
|
default:
|
|
565
569
|
throw new Error(`Unknown provider: ${providerName}`);
|
|
566
570
|
}
|