realtimex-crm 0.7.4 → 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.
- package/bin/realtimex-crm.js +3 -3
- package/package.json +2 -2
package/bin/realtimex-crm.js
CHANGED
|
@@ -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
|
|
107
|
-
console.log(`\n${message} (from
|
|
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:
|
|
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.
|
|
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",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dist",
|
|
22
22
|
"bin",
|
|
23
23
|
"src",
|
|
24
|
-
"supabase",
|
|
24
|
+
"supabase/",
|
|
25
25
|
"public",
|
|
26
26
|
"README.md",
|
|
27
27
|
"LICENSE"
|