@speedkit/cli 2.37.0 → 2.38.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,10 @@
|
|
|
1
|
+
# [2.38.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.37.0...v2.38.0) (2024-07-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **config-wizzard:** add specialCase for shopifyName ([16915a9](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/16915a9ce46bd046d4e2c53025c06203ce69fb2c))
|
|
7
|
+
|
|
1
8
|
# [2.37.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.36.0...v2.37.0) (2024-07-03)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -53,7 +53,11 @@ module.exports = {
|
|
|
53
53
|
{{/if}}
|
|
54
54
|
production: {
|
|
55
55
|
...shared,
|
|
56
|
-
|
|
56
|
+
{{#if isShopify}}
|
|
57
|
+
name: "{{production.host}}",
|
|
58
|
+
{{else}}
|
|
59
|
+
name: "production",
|
|
60
|
+
{{/if}}
|
|
57
61
|
forceInstall: {{production.forceInstall}}, // use when our setup is not present yet
|
|
58
62
|
// bypassDeactivation: false, // comment out when SK deactivation should not be bypassed
|
|
59
63
|
},
|
package/oclif.manifest.json
CHANGED