@spryker/oryx-for-zed 3.5.2 → 3.6.1

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,17 @@
1
1
  # Changelog
2
2
 
3
+ ### 3.6.1
4
+
5
+ Released on 23.02.2026
6
+
7
+ - Fix build process to exit with non-zero code on errors.
8
+
9
+ ### 3.6.0
10
+
11
+ Released on 09.02.2026
12
+
13
+ - Fix paths for Spryker monorepo.
14
+
3
15
  ### 3.5.2
4
16
 
5
17
  Released on 09.02.2026
package/build.js CHANGED
@@ -8,4 +8,7 @@ const copyAssetsCallback = require('./lib/copy');
8
8
 
9
9
  api.getConfiguration(api.settings)
10
10
  .then(configuration => build(configuration, copyAssetsCallback))
11
- .catch(error => console.error('An error occurred while creating configuration', error));
11
+ .catch(error => {
12
+ console.error('An error occurred while creating configuration', error);
13
+ process.exit(1);
14
+ });
package/lib/build.js CHANGED
@@ -27,6 +27,7 @@ function build(configuration, callback) {
27
27
  if (error || stats.hasErrors()) {
28
28
  message = 'build failed';
29
29
  logFn = 'error';
30
+ process.exitCode = 1;
30
31
  }
31
32
 
32
33
  if (error) {
@@ -57,10 +58,12 @@ function build(configuration, callback) {
57
58
  if (callback) {
58
59
  callback(error);
59
60
  }
61
+
62
+ process.exit(1);
60
63
  }
61
64
  }
62
65
 
63
- build.loadCompiler = function(webpack, webpackVersion) {
66
+ build.loadCompiler = function (webpack, webpackVersion) {
64
67
  this.webpack = webpack || require('webpack');
65
68
  this.webpackVersion = webpackVersion || require('webpack/package').version;
66
69
  }
package/lib/settings.js CHANGED
@@ -19,8 +19,8 @@ let guiFolder = 'gui';
19
19
  if (!fs.existsSync(path.resolve(bundlesPath, guiFolder))) {
20
20
  log.step('spryker core: no-bundle-split layout detected');
21
21
 
22
- bundlesPath = './vendor/spryker/spryker/Bundles/';
23
- featuresPath = './vendor/spryker/spryker/Features/';
22
+ bundlesPath = './src/Spryker/';
23
+ featuresPath = './src/SprykerFeature/';
24
24
  guiFolder = 'Gui';
25
25
  }
26
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spryker/oryx-for-zed",
3
- "version": "3.5.2",
3
+ "version": "3.6.1",
4
4
  "description": "Spryker ZED frontend automation tool",
5
5
  "repository": {
6
6
  "type": "git",