@hypermode/modus-cli
Advanced tools
Comparing version 0.13.9 to 0.13.10
@@ -152,3 +152,4 @@ /* | ||
const nodeVersion = process.version; | ||
await http.get(`https://${SCARF_ENDPOINT}.scarf.sh/${version}/${platform}/${arch}/${nodeVersion}/${sdk}/${sdkVersion}`); | ||
const variables = [version.toLowerCase(), platform.toLowerCase(), arch.toLowerCase(), nodeVersion.toLowerCase(), sdk.toLowerCase(), sdkVersion.toLowerCase()]; | ||
await http.get(`https://${SCARF_ENDPOINT}.scarf.sh/${variables.join("/")}`); | ||
} | ||
@@ -299,5 +300,5 @@ } | ||
if (createGitRepo) { | ||
await execFile("git", ["init"], execOpts); | ||
await execFile("git", ["init", "-b", "main"], execOpts); | ||
await execFile("git", ["add", "."], execOpts); | ||
await execFile("git", ["commit", "-m", "'Initial Commit'"], execOpts); | ||
await execFile("git", ["commit", "-m", `"Initial Commit"`], execOpts); | ||
} | ||
@@ -304,0 +305,0 @@ }); |
@@ -636,3 +636,3 @@ { | ||
}, | ||
"version": "0.13.9" | ||
"version": "0.13.10" | ||
} |
{ | ||
"name": "@hypermode/modus-cli", | ||
"version": "0.13.9", | ||
"version": "0.13.10", | ||
"description": "The Modus CLI", | ||
@@ -87,3 +87,6 @@ "author": "Hypermode Inc.", | ||
] | ||
}, | ||
"scarfSettings": { | ||
"allowTopLevel": true | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
244626
3584