@xuda.io/xuda-widget-plugin-xuda-drive 1.0.95 → 1.0.96

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/xuda-widget-plugin-xuda-drive",
3
- "version": "1.0.95",
3
+ "version": "1.0.96",
4
4
  "description": "Xuda Drive widget plugin",
5
5
  "scripts": {
6
6
  "pub": "npm version patch --force && npm publish --access public",
package/vite.config.js CHANGED
@@ -31,14 +31,12 @@ export default {
31
31
  return "vendor";
32
32
  }
33
33
  },
34
- // Output files with meaningful names
35
34
  entryFileNames: "[name].mjs",
36
35
  chunkFileNames: "[name]-[hash].mjs",
37
- // assetFileNames: "[name]-[hash][extname]"
38
36
  assetFileNames: (assetInfo) => {
39
37
  // Place all CSS in a single 'vendor.css' file
40
38
  if (assetInfo.name && assetInfo.name.endsWith(".css")) {
41
- return "vendor[extname]";
39
+ return "runtime[extname]";
42
40
  }
43
41
  return "[name]-[hash][extname]";
44
42
  }
File without changes