datasette-ts 0.0.7 → 0.0.8

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/cli.js CHANGED
@@ -24031,8 +24031,6 @@ async function runCloudflareDeploy(args) {
24031
24031
  logStep(`Worker entrypoint: ${workerEntrypoint}`);
24032
24032
  const assetsPath = join(packageRoot, "public");
24033
24033
  await assertFileExists(assetsPath, "assets directory");
24034
- logStep("Initializing Alchemy app");
24035
- const app = await alchemy(options.workerName);
24036
24034
  let importFile;
24037
24035
  try {
24038
24036
  logStep("Exporting SQLite for D1 import");
@@ -24059,6 +24057,8 @@ async function runCloudflareDeploy(args) {
24059
24057
  logStep("Precomputing inspect data");
24060
24058
  inspectData = await loadInspectDataFromFile(options.dbFile, options.dbName);
24061
24059
  }
24060
+ logStep("Initializing Alchemy app");
24061
+ const app = await alchemy(options.workerName);
24062
24062
  logStep("Creating D1 database");
24063
24063
  const db = await D1Database(`d1-${options.d1Name}`, {
24064
24064
  name: options.d1Name,