@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
@@ -21,7 +21,7 @@ $ npm install -g @speedkit/cli
21
21
  $ sk COMMAND
22
22
  running command...
23
23
  $ sk (--version)
24
- @speedkit/cli/2.37.0 linux-x64 node-v20.15.0
24
+ @speedkit/cli/2.38.0 linux-x64 node-v20.15.0
25
25
  $ sk --help [COMMAND]
26
26
  USAGE
27
27
  $ sk COMMAND
@@ -53,7 +53,11 @@ module.exports = {
53
53
  {{/if}}
54
54
  production: {
55
55
  ...shared,
56
- name: "production",
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
  },
@@ -688,5 +688,5 @@
688
688
  ]
689
689
  }
690
690
  },
691
- "version": "2.37.0"
691
+ "version": "2.38.0"
692
692
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@speedkit/cli",
3
3
  "description": "Speed Kit CLI",
4
- "version": "2.37.0",
4
+ "version": "2.38.0",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"