@spryker/oryx-for-zed 2.11.3 → 2.12.0
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 +22 -0
- package/lib/webpack.config.js +3 -2
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 2.12.0
|
|
4
|
+
Released on 31.05.2022
|
|
5
|
+
|
|
6
|
+
- Updated `@babel/core` dependency.
|
|
7
|
+
- Updated `@babel/preset-env` dependency.
|
|
8
|
+
- Updated `babel-loader` dependency.
|
|
9
|
+
- Updated `sass` dependency.
|
|
10
|
+
- Adjusted webpack config for jQuery scope.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### 2.11.4
|
|
14
|
+
Released on 7.04.2022
|
|
15
|
+
|
|
16
|
+
- Downgraded `optimize-css-assets-webpack-plugin` version to keep build working in production mode.
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### 2.11.4
|
|
20
|
+
Released on 18.03.2022
|
|
21
|
+
|
|
22
|
+
- Replaced deprecated `node-sass` dependency with `dart-sass`.
|
|
23
|
+
|
|
24
|
+
|
|
3
25
|
### 2.11.3
|
|
4
26
|
Released on 12.08.2021
|
|
5
27
|
|
package/lib/webpack.config.js
CHANGED
|
@@ -57,7 +57,8 @@ async function getConfiguration(settings) {
|
|
|
57
57
|
alias: {
|
|
58
58
|
ZedGui: `${settings.paths.guiFolder}/assets/Zed/js/modules/commons`,
|
|
59
59
|
ZedGuiEditorConfiguration: `${settings.paths.guiFolder}/assets/Zed/js/modules/editor`,
|
|
60
|
-
ZedGuiModules: `${settings.paths.guiFolder}/assets/Zed/js/modules
|
|
60
|
+
ZedGuiModules: `${settings.paths.guiFolder}/assets/Zed/js/modules`,
|
|
61
|
+
jQuery: 'jquery',
|
|
61
62
|
}
|
|
62
63
|
},
|
|
63
64
|
|
|
@@ -112,6 +113,7 @@ async function getConfiguration(settings) {
|
|
|
112
113
|
{
|
|
113
114
|
loader: 'sass-loader',
|
|
114
115
|
options: {
|
|
116
|
+
implementation: require('sass'),
|
|
115
117
|
sourceMap: true
|
|
116
118
|
}
|
|
117
119
|
}
|
|
@@ -213,5 +215,4 @@ async function getConfiguration(settings) {
|
|
|
213
215
|
return config;
|
|
214
216
|
}
|
|
215
217
|
|
|
216
|
-
|
|
217
218
|
module.exports = getConfiguration;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spryker/oryx-for-zed",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"description": "Spryker ZED frontend automation tool (oryx based)",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Spryker Sytems GmbH",
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"npm": ">=6.9.0"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@babel/core": "~7.12
|
|
22
|
-
"@babel/preset-env": "~7.12
|
|
21
|
+
"@babel/core": "~7.17.12",
|
|
22
|
+
"@babel/preset-env": "~7.17.12",
|
|
23
23
|
"@spryker/oryx": "^1.4.0",
|
|
24
24
|
"autoprefixer": "~8.3.0",
|
|
25
|
-
"babel-loader": "~8.
|
|
25
|
+
"babel-loader": "~8.2.5",
|
|
26
26
|
"core-js": "~2.5.5",
|
|
27
27
|
"css-loader": "~2.1.1",
|
|
28
28
|
"es6-promise": "~4.0.5",
|
|
@@ -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
|
-
"
|
|
34
|
-
"optimize-css-assets-webpack-plugin": "~5.0.1",
|
|
33
|
+
"optimize-css-assets-webpack-plugin": "~5.0.8",
|
|
35
34
|
"postcss-loader": "~2.1.4",
|
|
36
|
-
"resolve-url-loader": "~
|
|
37
|
-
"sass
|
|
35
|
+
"resolve-url-loader": "~5.0.0",
|
|
36
|
+
"sass": "~1.51.0",
|
|
37
|
+
"sass-loader": "~10.2.1",
|
|
38
38
|
"style-loader": "~0.21.0",
|
|
39
39
|
"terser-webpack-plugin": "~4.2.2",
|
|
40
|
-
"webpack": "~4.
|
|
40
|
+
"webpack": "~4.46.0",
|
|
41
41
|
"yargs": "~13.3.0"
|
|
42
42
|
}
|
|
43
43
|
}
|