@spryker/oryx-for-zed 3.4.1 → 3.4.3

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.
@@ -0,0 +1,13 @@
1
+ ## PR Description
2
+ Add a meaningful description here that will let us know what you want to fix with this PR or what functionality you want to add.
3
+
4
+ ## Steps before you submit a PR
5
+ - Please add tests for the code you add if it's possible.
6
+ - Please check out our contribution guide: https://docs.spryker.com/docs/dg/dev/code-contribution-guide.html
7
+ - Add a `contribution-license-agreement.txt` file with the following content:
8
+ `I hereby agree to Spryker\'s Contribution License Agreement in https://github.com/spryker/oryx-for-zed/blob/HASH_OF_COMMIT_YOU_ARE_BASING_YOUR_BRANCH_FROM_MASTER_BRANCH/CONTRIBUTING.md.`
9
+
10
+ This is a mandatory step to make sure you are aware of the license agreement and agree to it. `HASH_OF_COMMIT_YOU_ARE_BASING_YOUR_BRANCH_FROM_MASTER_BRANCH` is a hash of the commit you are basing your branch from the master branch. You can take it from commits list of master branch before you submit a PR.
11
+
12
+ ## Checklist
13
+ - [x] I agree with the Code Contribution License Agreement in CONTRIBUTING.md
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ### 3.4.2
4
+
5
+ Released on 19.03.2024
6
+
7
+ - Fix correct css-loader options schema.
8
+
3
9
  ### 3.4.1
4
10
 
5
11
  Released on 18.03.2024
@@ -112,11 +112,11 @@ async function getConfiguration(settings) {
112
112
  {
113
113
  loader: 'css-loader',
114
114
  options: {
115
- filter: (url, _resourcePath) =>
116
- !(
117
- url.includes('assets/img/') ||
118
- url.includes('bundles/images/')
119
- ),
115
+ url: {
116
+ filter: (url, _resourcePath) => {
117
+ return !(url.includes('assets/img/') || url.includes('bundles/images/'));
118
+ },
119
+ },
120
120
  importLoaders: 1,
121
121
  },
122
122
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spryker/oryx-for-zed",
3
- "version": "3.4.1",
3
+ "version": "3.4.3",
4
4
  "description": "Spryker ZED frontend automation tool",
5
5
  "repository": {
6
6
  "type": "git",
@@ -35,7 +35,7 @@
35
35
  "sass-loader": "~10.4.1",
36
36
  "style-loader": "~0.23.1",
37
37
  "terser-webpack-plugin": "~5.3.6",
38
- "webpack": "~5.88.2",
38
+ "webpack": "~5.94.0",
39
39
  "yargs": "~13.3.2"
40
40
  },
41
41
  "devDependencies": {