@spryker/oryx-for-zed 3.1.0 → 3.2.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 +6 -0
- package/lib/webpack.config.js +8 -14
- package/package.json +1 -2
package/CHANGELOG.md
CHANGED
package/lib/webpack.config.js
CHANGED
|
@@ -120,23 +120,17 @@ async function getConfiguration(settings) {
|
|
|
120
120
|
},
|
|
121
121
|
{
|
|
122
122
|
test: /\.(ttf|woff2?|eot|svg|otf)\??(\d*\w*=?\.?)+$/i,
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
publicPath: settings.paths.publicPath,
|
|
128
|
-
},
|
|
129
|
-
}],
|
|
123
|
+
type: 'asset/resource',
|
|
124
|
+
generator: {
|
|
125
|
+
filename: 'fonts/[name][ext]',
|
|
126
|
+
},
|
|
130
127
|
},
|
|
131
128
|
{
|
|
132
129
|
test: /\.(jpe?g|png|gif|svg)\??(\d*\w*=?\.?)+$/i,
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
publicPath: settings.paths.publicPath,
|
|
138
|
-
},
|
|
139
|
-
}],
|
|
130
|
+
type: 'asset/resource',
|
|
131
|
+
generator: {
|
|
132
|
+
filename: 'img/[name][ext]',
|
|
133
|
+
},
|
|
140
134
|
},
|
|
141
135
|
],
|
|
142
136
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spryker/oryx-for-zed",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Spryker ZED frontend automation tool",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"css-minimizer-webpack-plugin": "~4.2.2",
|
|
26
26
|
"dayjs": "~1.11.7",
|
|
27
27
|
"fast-glob": "~3.2.12",
|
|
28
|
-
"file-loader": "~1.1.11",
|
|
29
28
|
"fs-extra": "~10.1.0",
|
|
30
29
|
"imports-loader": "~0.8.0",
|
|
31
30
|
"mini-css-extract-plugin": "~2.7.2",
|