@spryker/oryx-for-zed 3.4.3 → 3.4.4
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 +16 -0
- package/lib/settings.js +3 -0
- package/lib/webpack.config.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 3.4.4
|
|
4
|
+
|
|
5
|
+
Released on 09.01.2025
|
|
6
|
+
|
|
7
|
+
- Adjusted configuration so webpack can search for entrypoints inside feature modules.
|
|
8
|
+
|
|
9
|
+
# Changelog
|
|
10
|
+
|
|
11
|
+
### 3.4.3
|
|
12
|
+
|
|
13
|
+
Released on 13.12.2024
|
|
14
|
+
|
|
15
|
+
- Bump webpack 5.88.2 => 5.94.0.
|
|
16
|
+
|
|
17
|
+
# Changelog
|
|
18
|
+
|
|
3
19
|
### 3.4.2
|
|
4
20
|
|
|
5
21
|
Released on 19.03.2024
|
package/lib/settings.js
CHANGED
|
@@ -13,12 +13,14 @@ const ecoDir = path.resolve('./vendor/spryker-eco');
|
|
|
13
13
|
const sdkDir = path.resolve('./vendor/spryker-sdk');
|
|
14
14
|
|
|
15
15
|
let bundlesPath = './vendor/spryker/';
|
|
16
|
+
let featuresPath = './vendor/spryker/';
|
|
16
17
|
let guiFolder = 'gui';
|
|
17
18
|
|
|
18
19
|
if (!fs.existsSync(path.resolve(bundlesPath, guiFolder))) {
|
|
19
20
|
log.step('spryker core: no-bundle-split layout detected');
|
|
20
21
|
|
|
21
22
|
bundlesPath = './vendor/spryker/spryker/Bundles/';
|
|
23
|
+
featuresPath = './vendor/spryker/spryker/Features/';
|
|
22
24
|
guiFolder = 'Gui';
|
|
23
25
|
}
|
|
24
26
|
|
|
@@ -44,6 +46,7 @@ const settings = {
|
|
|
44
46
|
bundlesDir,
|
|
45
47
|
ecoDir,
|
|
46
48
|
sdkDir,
|
|
49
|
+
featuresPath,
|
|
47
50
|
},
|
|
48
51
|
|
|
49
52
|
runtimeEntryName: 'spryker-zed-gui-commons',
|
package/lib/webpack.config.js
CHANGED