@fernir2/saas-kit-cli 0.1.1 → 0.1.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.
|
@@ -100,15 +100,15 @@ More information: https://saaskit.us
|
|
|
100
100
|
try {
|
|
101
101
|
log("Step 1/3: Installing @fernir2/saas-kit package...");
|
|
102
102
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
103
|
+
// Install the main package temporarily
|
|
104
|
+
runCommand("npm init -y", realTempDir);
|
|
105
|
+
runCommand("npm install @fernir2/saas-kit@latest", realTempDir);
|
|
106
106
|
|
|
107
107
|
log("\nStep 2/3: Creating your application...");
|
|
108
108
|
|
|
109
109
|
// Run the create-saas-kit-app binary from the installed package
|
|
110
|
-
|
|
111
|
-
|
|
110
|
+
const saasKitBinPath = path.join(
|
|
111
|
+
realTempDir,
|
|
112
112
|
"node_modules",
|
|
113
113
|
"@fernir2",
|
|
114
114
|
"saas-kit",
|