create-sitecore-jss 22.5.0-beta.11 → 22.5.0-beta.12

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.
@@ -17,3 +17,7 @@ PERSONALIZE_MIDDLEWARE_CDP_TIMEOUT=
17
17
 
18
18
  # Timeout (ms) for Sitecore Experience Edge requests to respond within. Default is 400.
19
19
  PERSONALIZE_MIDDLEWARE_EDGE_TIMEOUT=
20
+
21
+ # Client ID and Secret used for Design Library functionality
22
+ SITECORE_AUTH_CLIENT_ID=
23
+ SITECORE_AUTH_CLIENT_SECRET=
@@ -1,5 +1,5 @@
1
1
  import { ComponentBuilderPlugin, ComponentBuilderPluginConfig } from '..';
2
- import { extractComponents } from '@sitecore-jss/sitecore-jss-dev-tools';
2
+ import { extractFiles } from '@sitecore-jss/sitecore-jss-dev-tools';
3
3
 
4
4
  /**
5
5
  * If consented to, sends components code for code generation learning to XMC
@@ -8,7 +8,7 @@ class CodeExtractionPlugin implements ComponentBuilderPlugin {
8
8
  order = 100;
9
9
 
10
10
  exec(config: ComponentBuilderPluginConfig) {
11
- extractComponents({});
11
+ extractFiles({});
12
12
  return config;
13
13
  }
14
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-sitecore-jss",
3
- "version": "22.5.0-beta.11",
3
+ "version": "22.5.0-beta.12",
4
4
  "description": "Sitecore JSS initializer",
5
5
  "bin": "./dist/index.js",
6
6
  "scripts": {
@@ -65,5 +65,5 @@
65
65
  "ts-node": "^10.9.1",
66
66
  "typescript": "~5.6.3"
67
67
  },
68
- "gitHead": "60c1594cdbc7ff5c173965d4b95020778fae1d7f"
68
+ "gitHead": "7e0753049a5b53583287f5b6569a5dc4233745bb"
69
69
  }