@spryker/oryx-for-zed 3.4.4 → 3.4.5

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,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ### 3.4.5
4
+
5
+ Released on 10.01.2025
6
+
7
+ - Fix entrypoint for features.
8
+
9
+ # Changelog
10
+
3
11
  ### 3.4.4
4
12
 
5
13
  Released on 09.01.2025
package/lib/settings.js CHANGED
@@ -25,6 +25,7 @@ if (!fs.existsSync(path.resolve(bundlesPath, guiFolder))) {
25
25
  }
26
26
 
27
27
  const bundlesDir = path.resolve(bundlesPath);
28
+ const featuresDir = path.resolve(featuresPath);
28
29
  const guiPath = path.join(bundlesPath, guiFolder);
29
30
 
30
31
  const settings = {
@@ -52,14 +53,14 @@ const settings = {
52
53
  runtimeEntryName: 'spryker-zed-gui-commons',
53
54
 
54
55
  entry: {
55
- dirs: [bundlesDir, ecoDir, sdkDir],
56
+ dirs: [bundlesDir, ecoDir, sdkDir, featuresDir],
56
57
  patterns: ['**/Zed/**/*.entry.js'],
57
58
  description: 'looking for entry points...',
58
59
  defineName: p => path.basename(p, '.entry.js'),
59
60
  },
60
61
 
61
62
  resolveModules: {
62
- dirs: [bundlesDir],
63
+ dirs: [bundlesDir, featuresDir],
63
64
  patterns: ['**/Zed/node_modules'],
64
65
  description: 'resolving core modules deps...',
65
66
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spryker/oryx-for-zed",
3
- "version": "3.4.4",
3
+ "version": "3.4.5",
4
4
  "description": "Spryker ZED frontend automation tool",
5
5
  "repository": {
6
6
  "type": "git",
@@ -42,4 +42,4 @@
42
42
  "@babel/core": "~7.23.2",
43
43
  "@babel/preset-env": "~7.23.2"
44
44
  }
45
- }
45
+ }