@pushwoosh/frontend-builder-engine 1.0.15 → 1.0.17
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.
|
@@ -32,6 +32,11 @@ module.exports = (webpackConfigEnv, argv) => {
|
|
|
32
32
|
disableHtmlGeneration: true,
|
|
33
33
|
});
|
|
34
34
|
|
|
35
|
+
// remove all rules that handle '.svg' files
|
|
36
|
+
defaultConfig.module.rules = defaultConfig.module.rules.filter(({ test }) => (
|
|
37
|
+
!(test && test.test('.svg'))
|
|
38
|
+
));
|
|
39
|
+
|
|
35
40
|
const extend = {
|
|
36
41
|
entry: {
|
|
37
42
|
index: path.resolve(cwd, './src/index.tsx'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pushwoosh/frontend-builder-engine",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.17",
|
|
4
4
|
"description": "Pushwoosh frontend builder engine",
|
|
5
5
|
"main": "./lib/pushwoosh-frontend-builder-engine.js",
|
|
6
6
|
"scripts": {
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"@eslint/js": "^9.13.0",
|
|
26
26
|
"@stylistic/eslint-plugin": "^2.10.0",
|
|
27
27
|
"@stylistic/eslint-plugin-ts": "^2.10.0",
|
|
28
|
+
"@svgr/webpack": "^8.1.0",
|
|
28
29
|
"@types/eslint__js": "^8.42.3",
|
|
29
30
|
"@types/webpack-env": "^1.18.4",
|
|
30
31
|
"babel-loader": "^9.1.3",
|