@speedkit/cli 3.43.1 → 3.43.2
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.43.2](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.43.1...v3.43.2) (2026-04-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deploy:** deploy origins ([c0bf34b](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/c0bf34bba663d564130e426fea78ad0e06af46c9))
|
|
7
|
+
|
|
1
8
|
## [3.43.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.43.0...v3.43.1) (2026-04-23)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -42,8 +42,7 @@ class CustomerConfigHandler {
|
|
|
42
42
|
file.skipFile();
|
|
43
43
|
return;
|
|
44
44
|
}
|
|
45
|
-
|
|
46
|
-
const { updatedFile } = await this.diffService.diffContent(file.name, JSON.stringify(config.origins, null, 4), JSON.stringify(installResource.origins, null, 4));
|
|
45
|
+
const { updatedFile } = await this.diffService.diffContent(file.name, JSON.stringify(installResource.origins, null, 4), JSON.stringify(config.origins, null, 4));
|
|
47
46
|
const origins = JSON.parse(updatedFile);
|
|
48
47
|
file.updateOrigins(origins);
|
|
49
48
|
if (!(await this.cli.confirm("Update origins?", true))) {
|
package/oclif.manifest.json
CHANGED