@atlashub/smartstack-cli 1.32.0 → 1.34.0
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/.documentation/installation.html +5 -11
- package/README.md +43 -600
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/skills/gitflow/steps/step-init.md +141 -20
package/dist/index.js
CHANGED
|
@@ -124884,7 +124884,7 @@ function parseConnectionString(connStr) {
|
|
|
124884
124884
|
}
|
|
124885
124885
|
function executeSqlCmd(server, database, query) {
|
|
124886
124886
|
const sqlServer = server === "(local)" ? "." : server;
|
|
124887
|
-
const cmd = `sqlcmd -S "${sqlServer}" -d "${database}" -E -I -Q "${query.replace(/"/g, '\\"')}" -h -1 -W`;
|
|
124887
|
+
const cmd = `sqlcmd -S "${sqlServer}" -d "${database}" -E -I -C -Q "${query.replace(/"/g, '\\"')}" -h -1 -W`;
|
|
124888
124888
|
return (0, import_child_process8.execSync)(cmd, { encoding: "utf-8" }).trim();
|
|
124889
124889
|
}
|
|
124890
124890
|
function detectSmartStackApp() {
|