@speedkit/cli 4.2.1 → 4.3.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
# [4.3.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.2.1...v4.3.0) (2026-05-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **devtools:** do not download devtools if one of the extensions is configured from local ([049cb38](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/049cb38d22756a837759094038c60ae6c22a6bb5))
|
|
7
|
+
* **devtools:** switch to the new devtools project ([b026e2a](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/b026e2a36b6353527204611e7f02463a58968dc7))
|
|
8
|
+
|
|
1
9
|
## [4.2.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.2.0...v4.2.1) (2026-05-12)
|
|
2
10
|
|
|
3
11
|
|
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ export class ExtensionDownloader {
|
|
|
44
44
|
}
|
|
45
45
|
async updateLocalDevtools() {
|
|
46
46
|
// downloadExtension
|
|
47
|
-
const extensionResponse = await fetch("https://threepointonefour.app.baqend.com/v1/code/
|
|
47
|
+
const extensionResponse = await fetch("https://threepointonefour.app.baqend.com/v1/code/webhook_devtools_release?download");
|
|
48
48
|
// get fileName from header
|
|
49
49
|
const fileName = extensionResponse.headers.get("filename");
|
|
50
50
|
// resolve path for unpacked extension
|
|
@@ -74,7 +74,7 @@ export class ExtensionDownloader {
|
|
|
74
74
|
return manifestConfig.version;
|
|
75
75
|
}
|
|
76
76
|
async getRemoteVersion() {
|
|
77
|
-
const versionResponse = await fetch("https://threepointonefour.app.baqend.com/v1/code/
|
|
77
|
+
const versionResponse = await fetch("https://threepointonefour.app.baqend.com/v1/code/webhook_devtools_release");
|
|
78
78
|
if (!versionResponse.ok) {
|
|
79
79
|
throw new Error("Could not find version for" + devtools);
|
|
80
80
|
}
|
|
@@ -57,7 +57,8 @@ export class ExtensionValidator {
|
|
|
57
57
|
}
|
|
58
58
|
async handleDevtoolsExtension(validExtensions) {
|
|
59
59
|
// check if devtools extension can be find in current extensionPaths
|
|
60
|
-
if (validExtensions.some((config) => config.name.toLowerCase().includes("devtools
|
|
60
|
+
if (validExtensions.some((config) => config.name.toLowerCase().includes("speed-kit devtools") ||
|
|
61
|
+
config.name.toLowerCase().includes("devtools extension"))) {
|
|
61
62
|
return;
|
|
62
63
|
}
|
|
63
64
|
// download or update extension
|
package/oclif.manifest.json
CHANGED