@computesdk/workbench 15.0.0 → 16.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 +2 -0
- package/dist/bin/workbench.js.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +21 -17
package/dist/bin/workbench.js
CHANGED
|
@@ -562,6 +562,8 @@ async function loadProvider(providerName) {
|
|
|
562
562
|
return await import("@computesdk/namespace");
|
|
563
563
|
case "hopx":
|
|
564
564
|
return await import("@computesdk/hopx");
|
|
565
|
+
case "sprites":
|
|
566
|
+
return await import("@computesdk/sprites");
|
|
565
567
|
default:
|
|
566
568
|
throw new Error(`Unknown provider: ${providerName}`);
|
|
567
569
|
}
|