@eeacms/volto-globalsearch 2.1.1 → 2.1.2
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 -3
- package/package.json +1 -1
- package/razzle.extend.js +21 -21
package/CHANGELOG.md
CHANGED
|
@@ -4,13 +4,16 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
-
### [2.1.
|
|
7
|
+
### [2.1.2](https://github.com/eea/volto-globalsearch/compare/2.1.1...2.1.2) - 15 May 2025
|
|
8
|
+
|
|
9
|
+
#### :hammer_and_wrench: Others
|
|
10
|
+
|
|
11
|
+
- Remove tweak for pngs [Tiberiu Ichim - [`e50f9eb`](https://github.com/eea/volto-globalsearch/commit/e50f9eb600a482ce7847f8847366277ce7c775e4)]
|
|
12
|
+
### [2.1.1](https://github.com/eea/volto-globalsearch/compare/2.1.0...2.1.1) - 14 May 2025
|
|
8
13
|
|
|
9
14
|
#### :hammer_and_wrench: Others
|
|
10
15
|
|
|
11
16
|
- Only this works [Tiberiu Ichim - [`9f24fae`](https://github.com/eea/volto-globalsearch/commit/9f24fae84804ed33bd56391531aa9edc17908ac8)]
|
|
12
|
-
- Tweak bundling for png files [Tiberiu Ichim - [`62834c2`](https://github.com/eea/volto-globalsearch/commit/62834c21527dbfbcaa30fe3a261c084918d0b8fb)]
|
|
13
|
-
- Tweak bundling for png files [Tiberiu Ichim - [`6b9be03`](https://github.com/eea/volto-globalsearch/commit/6b9be0304923d36094dcd465bbfb51456b6018a0)]
|
|
14
17
|
### [2.1.0](https://github.com/eea/volto-globalsearch/compare/2.0.11...2.1.0) - 8 May 2025
|
|
15
18
|
|
|
16
19
|
### [2.0.11](https://github.com/eea/volto-globalsearch/compare/2.0.10...2.0.11) - 8 April 2025
|
package/package.json
CHANGED
package/razzle.extend.js
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
const makeLoaderFinder = require('razzle-dev-utils/makeLoaderFinder');
|
|
2
|
-
const fileLoaderFinder = makeLoaderFinder('file-loader');
|
|
1
|
+
// const makeLoaderFinder = require('razzle-dev-utils/makeLoaderFinder');
|
|
2
|
+
// const fileLoaderFinder = makeLoaderFinder('file-loader');
|
|
3
3
|
|
|
4
4
|
const plugins = (defaultPlugins) => {
|
|
5
5
|
return defaultPlugins;
|
|
6
6
|
};
|
|
7
7
|
|
|
8
8
|
const modify = (config, { target, dev }, webpack) => {
|
|
9
|
-
const fileLoader = config.module.rules.find(fileLoaderFinder);
|
|
10
|
-
|
|
11
|
-
fileLoader.exclude = [
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
];
|
|
9
|
+
// const fileLoader = config.module.rules.find(fileLoaderFinder);
|
|
10
|
+
//
|
|
11
|
+
// fileLoader.exclude = [
|
|
12
|
+
// /\.(config|variables|overrides)$/,
|
|
13
|
+
// /icons\/.*\.svg$/,
|
|
14
|
+
// /\.html$/,
|
|
15
|
+
// /\.(js|jsx|mjs)$/,
|
|
16
|
+
// /\.(ts|tsx)$/,
|
|
17
|
+
// /\.(vue)$/,
|
|
18
|
+
// /\.(less)$/,
|
|
19
|
+
// /\.(re)$/,
|
|
20
|
+
// /\.(s?css|sass)$/,
|
|
21
|
+
// /\.json$/,
|
|
22
|
+
// /\.bmp$/,
|
|
23
|
+
// /\.gif$/,
|
|
24
|
+
// /\.jpe?g$/,
|
|
25
|
+
// // .png files we don't want them in the bundle
|
|
26
|
+
// /static\/\.png$/,
|
|
27
|
+
// ];
|
|
28
28
|
|
|
29
29
|
return config;
|
|
30
30
|
};
|