@manojkmfsi/monodog 1.0.10 → 1.0.11

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/setup.js CHANGED
@@ -52,6 +52,7 @@ function ensureWorkspace(rootDir) {
52
52
  // 3. Install deps
53
53
  ensureWorkspace(process.cwd());
54
54
  (0, child_process_1.execSync)('pnpm install', { stdio: 'inherit' });
55
+ (0, child_process_1.execSync)('pnpm --filter monodog-app migrate', { stdio: 'inherit' });
55
56
  console.log(`
56
57
  ✅ Monodog ready!
57
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manojkmfsi/monodog",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "App for monodog monorepo",
5
5
  "license": "MIT",
6
6
  "bin": {
package/src/setup.ts CHANGED
@@ -56,6 +56,7 @@ function ensureWorkspace(rootDir: string) {
56
56
  // 3. Install deps
57
57
  ensureWorkspace(process.cwd());
58
58
  execSync('pnpm install', { stdio: 'inherit' });
59
+ execSync('pnpm --filter monodog-app migrate', { stdio: 'inherit' });
59
60
 
60
61
  console.log(`
61
62
  ✅ Monodog ready!