realtimex-crm 0.7.5 → 0.7.6

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.
@@ -103,12 +103,12 @@ To configure the app:
103
103
 
104
104
  // Helper to run supabase commands
105
105
  const runSupabaseCommand = async (command, message) => {
106
- const cwd = process.cwd();
107
- console.log(`\n${message} (from directory: ${cwd})`);
106
+ const packageRoot = join(__dirname, '..');
107
+ console.log(`\n${message} (from package root: ${packageRoot})`);
108
108
  const proc = spawn("npx", ["supabase", ...command], {
109
109
  stdio: "inherit",
110
110
  shell: true,
111
- cwd: cwd,
111
+ cwd: packageRoot,
112
112
  });
113
113
 
114
114
  return new Promise((resolve, reject) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "realtimex-crm",
3
- "version": "0.7.5",
3
+ "version": "0.7.6",
4
4
  "description": "RealTimeX CRM - A full-featured CRM built with React, shadcn-admin-kit, and Supabase. Fork of Atomic CRM with RealTimeX App SDK integration.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",