@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.
- package/dist/index.js +3 -3
- 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
|
|
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
|
|
17263
|
+
execSync4("pnpm db:migrate", { cwd: root, stdio: ["pipe", "inherit", "inherit"] });
|
|
17264
17264
|
} else {
|
|
17265
17265
|
if (!isInstalled()) {
|
|
17266
17266
|
console.log("Installing Alook...");
|