@alook/app 0.0.2 → 0.0.3

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -177,9 +177,9 @@ function runMigrations() {
177
177
  const webDir = join4(SELF_HOSTED_DIR, "web");
178
178
  console.log("Running database migrations...");
179
179
  try {
180
- execSync2("npx wrangler d1 migrations apply alook-app --local --yes", {
180
+ execSync2("npx wrangler d1 migrations apply alook-app --local", {
181
181
  cwd: webDir,
182
- stdio: "inherit"
182
+ stdio: ["pipe", "inherit", "inherit"]
183
183
  });
184
184
  console.log("Migrations complete");
185
185
  } catch {
@@ -17260,7 +17260,7 @@ function onboardCommand() {
17260
17260
  try {
17261
17261
  execSync4("pnpm predev", { cwd: root, stdio: "inherit" });
17262
17262
  } catch {}
17263
- execSync4("pnpm db:migrate -- --yes", { cwd: root, stdio: "inherit" });
17263
+ execSync4("pnpm db:migrate", { cwd: root, stdio: ["pipe", "inherit", "inherit"] });
17264
17264
  } else {
17265
17265
  if (!isInstalled()) {
17266
17266
  console.log("Installing Alook...");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alook/app",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Run Alook locally — one command, no clone needed",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/alookai/alook#readme",