@openremote/util 1.6.0-snapshot.20250430112803 → 1.6.0-snapshot.20250512155842
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/package.json +2 -1
- package/webpack.util.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openremote/util",
|
|
3
|
-
"version": "1.6.0-snapshot.
|
|
3
|
+
"version": "1.6.0-snapshot.20250512155842",
|
|
4
4
|
"description": "Build Util",
|
|
5
5
|
"author": "OpenRemote",
|
|
6
6
|
"main": "webpack.util.js",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"@babel/plugin-transform-runtime": "^7.16.4",
|
|
17
17
|
"@babel/preset-env": "^7.16.4",
|
|
18
18
|
"@babel/runtime": "^7.16.3",
|
|
19
|
+
"@custom-elements-manifest/analyzer": "^0.10.4",
|
|
19
20
|
"@typescript-eslint/eslint-plugin": "^5.9.0",
|
|
20
21
|
"@typescript-eslint/parser": "^5.9.0",
|
|
21
22
|
"babel-loader": "^8.2.3",
|
package/webpack.util.js
CHANGED
|
@@ -274,7 +274,7 @@ function generateExports(dirname) {
|
|
|
274
274
|
const entry = {};
|
|
275
275
|
entry[name] = "./src/index.ts";
|
|
276
276
|
|
|
277
|
-
|
|
277
|
+
const config = {
|
|
278
278
|
entry: entry,
|
|
279
279
|
mode: "production",
|
|
280
280
|
output: {
|
|
@@ -290,6 +290,8 @@ function generateExports(dirname) {
|
|
|
290
290
|
module: {...getStandardModuleRules()},
|
|
291
291
|
externals: generateExternals(bundle)
|
|
292
292
|
};
|
|
293
|
+
|
|
294
|
+
return config;
|
|
293
295
|
});
|
|
294
296
|
}
|
|
295
297
|
|