@speedkit/cli 3.4.2 → 3.4.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [3.4.3](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.4.2...v3.4.3) (2025-08-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * double escape of commands ([ec827a8](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/ec827a8b15008fbd4b04e00d7f29deb68f1cae80))
7
+
1
8
  ## [3.4.2](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.4.1...v3.4.2) (2025-08-19)
2
9
 
3
10
 
package/README.md CHANGED
@@ -21,7 +21,7 @@ $ npm install -g @speedkit/cli
21
21
  $ sk COMMAND
22
22
  running command...
23
23
  $ sk (--version)
24
- @speedkit/cli/3.4.2 linux-x64 node-v20.19.4
24
+ @speedkit/cli/3.4.3 linux-x64 node-v20.19.4
25
25
  $ sk --help [COMMAND]
26
26
  USAGE
27
27
  $ sk COMMAND
@@ -163,7 +163,7 @@ class CliService {
163
163
  }
164
164
  execSync(command, arguments_) {
165
165
  const result = (0, safe_1.safe)(() => {
166
- return (0, node_child_process_1.execSync)(`"${command}" ${arguments_.join(" ")}`).toString();
166
+ return (0, node_child_process_1.execSync)(`${command} ${arguments_.join(" ")}`).toString();
167
167
  });
168
168
  if (result.success !== true) {
169
169
  throw new application_error_1.default(result.error, [
@@ -36,10 +36,6 @@ class CustomerConfigHandler extends file_handler_1.default {
36
36
  return new customer_config_file_1.CustomerConfigFile(this.getFileName(filePath), filePath, fileContent, config, this.configName, this.testApp);
37
37
  }
38
38
  async loadConfig(fileContent, filePath) {
39
- if ((fileContent.includes("process.env.TEST_APP") && this.testApp === null) ||
40
- this.testApp.length === 0) {
41
- throw new application_error_1.default("please specify env TEST_APP in your .env or configFile file");
42
- }
43
39
  const configsResult = (0, safe_1.safe)(() => {
44
40
  return JSON.parse(fileContent);
45
41
  });
@@ -732,5 +732,5 @@
732
732
  ]
733
733
  }
734
734
  },
735
- "version": "3.4.2"
735
+ "version": "3.4.3"
736
736
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@speedkit/cli",
3
3
  "description": "Speed Kit CLI",
4
- "version": "3.4.2",
4
+ "version": "3.4.3",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"