@speedkit/cli 3.23.0 → 3.24.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
+ # [3.24.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.23.0...v3.24.0) (2026-02-02)
2
+
3
+
4
+ ### Features
5
+
6
+ * **wizzard:** remove question for scoped deployments ([96f5f27](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/96f5f279d279d65e4d309dec193958965fe95b7f))
7
+
1
8
  # [3.23.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.22.0...v3.23.0) (2026-01-30)
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/3.23.0 linux-x64 node-v20.20.0
24
+ @speedkit/cli/3.24.0 linux-x64 node-v20.20.0
25
25
  $ sk --help [COMMAND]
26
26
  USAGE
27
27
  $ sk COMMAND
@@ -136,7 +136,7 @@ class CustomerConfigService {
136
136
  return true;
137
137
  }
138
138
  async getConfigSettings() {
139
- let { production, staging, activateScopedDeployments, subRouteScope, includeServiceWorker, activateImageOptimisation, removeLazyLoading, addSSR, addSSRInnerShadowDomSupport, addDeviceDetection, useGATracking, useScrapingBee, withGoogleOptimize, activateCfRocketLoaderPlugin, hasSoftNavigations, convertSoftToHardNavigations, isShopify, isShopware, isSalesforce, isOxid, isPlentymarkets, isPOV, } = {};
139
+ let { production, staging, includeServiceWorker, activateImageOptimisation, removeLazyLoading, addSSR, addSSRInnerShadowDomSupport, addDeviceDetection, useGATracking, useScrapingBee, withGoogleOptimize, activateCfRocketLoaderPlugin, hasSoftNavigations, convertSoftToHardNavigations, isShopify, isShopware, isSalesforce, isOxid, isPlentymarkets, isPOV, } = {};
140
140
  this.appName = await this.cli.prompt(`[App Name] Enter desired SK app name:`, {
141
141
  validator: (input) => /^[\da-z]+(?:-[\da-z]+)*$/.test(input) ? "" : "No valid kebab-case",
142
142
  defaultAnswer: this.appName,
@@ -173,11 +173,6 @@ class CustomerConfigService {
173
173
  staging = await this.getEnvironmentConfig(customer_config_service_model_1.EnvironmentType.STAGING, production.host.replace("www", "staging"));
174
174
  }
175
175
  }
176
- activateScopedDeployments = await this.cli.confirm("[Scoping] Is the shop using (locale-based) sub-resources, like e.g. /de-de/main.js, on the basis of which scoped deployments should to be activated to prevent local-based changes from triggering a global deployment job?", false);
177
- if (activateScopedDeployments &&
178
- (await this.cli.confirm("[Scoping] Should SK only be active on specific sub-routes? (e.g. /de-de)", false))) {
179
- subRouteScope = await this.cli.prompt("[Scoping] Enter one exemplary sub-route to scope SK to (without leading/trailing slashes):", { defaultAnswer: "de-de" });
180
- }
181
176
  if (await this.cli.confirm("[Service Worker] Is there a Service Worker which needs to be included?", false)) {
182
177
  includeServiceWorker = await this.cli.prompt("[Service Worker] Enter path of Service Worker to be included:", { defaultAnswer: "/sw.js" });
183
178
  }
@@ -208,8 +203,6 @@ class CustomerConfigService {
208
203
  appName: this.appName,
209
204
  production,
210
205
  staging,
211
- activateScopedDeployments,
212
- subRouteScope,
213
206
  includeServiceWorker,
214
207
  activateImageOptimisation,
215
208
  removeLazyLoading,
@@ -127,13 +127,11 @@ const config = {
127
127
  {{else}}
128
128
  delayScriptPath: "/speed-kit-dom-ready.js",
129
129
  {{/if}}
130
- {{#if activateScopedDeployments}}
131
- executeDeploymentDetection: {
132
- scope: true,
133
- },
134
- {{else}}
130
+ /**
131
+ * @todo check for assets loaded via scoped-subroutes
132
+ * enable scoped deployments like this executeDeploymentDetection: {scope: true} when found
133
+ **/
135
134
  executeDeploymentDetection: true,
136
- {{/if}}
137
135
  {{#if removeLazyLoading}}
138
136
  lazyLoadList,
139
137
  {{/if}}
@@ -738,5 +738,5 @@
738
738
  ]
739
739
  }
740
740
  },
741
- "version": "3.23.0"
741
+ "version": "3.24.0"
742
742
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@speedkit/cli",
3
3
  "description": "Speed Kit CLI",
4
- "version": "3.23.0",
4
+ "version": "3.24.0",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"