@spryker/oryx-for-zed 2.11.1 → 2.11.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 CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ### 2.11.4
4
+ Released on 18.03.2022
5
+
6
+ - Replaced deprecated `node-sass` dependency with `dart-sass`.
7
+
8
+
9
+ ### 2.11.3
10
+ Released on 12.08.2021
11
+
12
+ - Removed backward compatibility script for Merchant Portal assets.
13
+ - Fixed bug with not defined settings in datatables by adding additional module rule.
14
+
15
+
16
+ ### 2.11.2
17
+ Released on 22.07.2021
18
+
19
+ - Fixed backward compatibility script for the new Merchant Portal endpoint.
20
+
21
+
3
22
  ### 2.11.1
4
23
  Released on 07.07.2021
5
24
 
@@ -70,6 +70,10 @@ async function getConfiguration(settings) {
70
70
 
71
71
  module: {
72
72
  rules: [
73
+ {
74
+ test: /datatables\.net.*/,
75
+ use: 'imports-loader?define=>false'
76
+ },
73
77
  {
74
78
  test: /(jquery-migrate)/,
75
79
  use: 'imports-loader?define=>false'
@@ -108,6 +112,7 @@ async function getConfiguration(settings) {
108
112
  {
109
113
  loader: 'sass-loader',
110
114
  options: {
115
+ implementation: require('sass'),
111
116
  sourceMap: true
112
117
  }
113
118
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spryker/oryx-for-zed",
3
- "version": "2.11.1",
3
+ "version": "2.11.4",
4
4
  "description": "Spryker ZED frontend automation tool (oryx based)",
5
5
  "author": {
6
6
  "name": "Spryker Sytems GmbH",
@@ -30,14 +30,14 @@
30
30
  "fs-extra": "~10.0.0",
31
31
  "imports-loader": "~0.8.0",
32
32
  "mini-css-extract-plugin": "~0.4.0",
33
- "node-sass": "~4.14.1",
34
- "optimize-css-assets-webpack-plugin": "~5.0.1",
33
+ "optimize-css-assets-webpack-plugin": "~6.0.1",
35
34
  "postcss-loader": "~2.1.4",
36
- "resolve-url-loader": "~2.3.2",
37
- "sass-loader": "~7.0.1",
35
+ "resolve-url-loader": "~5.0.0",
36
+ "sass": "~1.32.13",
37
+ "sass-loader": "~10.2.1",
38
38
  "style-loader": "~0.21.0",
39
39
  "terser-webpack-plugin": "~4.2.2",
40
- "webpack": "~4.27.1",
40
+ "webpack": "~4.46.0",
41
41
  "yargs": "~13.3.0"
42
42
  }
43
43
  }