@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
|
@@ -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)(
|
|
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
|
});
|
package/oclif.manifest.json
CHANGED