@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
- // Install the main package temporarily
104
- runCommand("npm init -y", tempDir);
105
- runCommand("npm install @fernir2/saas-kit@latest", tempDir);
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
- const saasKitBinPath = path.join(
111
- tempDir,
110
+ const saasKitBinPath = path.join(
111
+ realTempDir,
112
112
  "node_modules",
113
113
  "@fernir2",
114
114
  "saas-kit",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fernir2/saas-kit-cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "CLI for creating saas-kit apps",
5
5
  "bin": {
6
6
  "create-saas-kit-app": "bin/create-saas-kit-app.js"