appflare 0.2.11 → 0.2.13

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/cli/index.ts CHANGED
@@ -105,6 +105,10 @@ program
105
105
  });
106
106
 
107
107
  (async () => {
108
+ if (!process.versions.bun) {
109
+ console.error("Appflare CLI must be run with Bun.");
110
+ process.exit(1);
111
+ }
108
112
  await program.parseAsync(process.argv);
109
113
  })().catch((error) => {
110
114
  console.error(error);