muon-ui 0.4.0 → 0.5.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.
Files changed (34) hide show
  1. package/dist/cli.cjs +5 -5
  2. package/dist/cli.cjs.map +1 -1
  3. package/dist/index.cjs +2 -2
  4. package/dist/index.mjs +2 -2
  5. package/dist/native/linux64/muon-bootstrap +0 -0
  6. package/dist/native/linux64/muon-prepare +0 -0
  7. package/dist/native/linuxarm/muon-bootstrap +0 -0
  8. package/dist/native/linuxarm/muon-prepare +0 -0
  9. package/dist/native/linuxarm64/muon-bootstrap +0 -0
  10. package/dist/native/linuxarm64/muon-prepare +0 -0
  11. package/dist/native/windows32/muon-bootstrap.exe +0 -0
  12. package/dist/native/windows32/muon-prepare.exe +0 -0
  13. package/dist/native/windows64/muon-bootstrap.exe +0 -0
  14. package/dist/native/windows64/muon-prepare.exe +0 -0
  15. package/dist/runtime/linux64/libmuon-ui.so +0 -0
  16. package/dist/runtime/linux64/muon-core +0 -0
  17. package/dist/runtime/linuxarm/libmuon-ui.so +0 -0
  18. package/dist/runtime/linuxarm/muon-core +0 -0
  19. package/dist/runtime/linuxarm64/libmuon-ui.so +0 -0
  20. package/dist/runtime/linuxarm64/muon-core +0 -0
  21. package/dist/runtime/windows32/libcardio.dll +0 -0
  22. package/dist/runtime/windows32/libmuon-ui.dll +0 -0
  23. package/dist/runtime/windows32/muon-core.exe +0 -0
  24. package/dist/runtime/windows64/libcardio.dll +0 -0
  25. package/dist/runtime/windows64/libmuon-ui.dll +0 -0
  26. package/dist/runtime/windows64/muon-core.exe +0 -0
  27. package/dist/{vite-options-C4evRLpv.cjs → vite-options-D4u4kLQI.cjs} +18 -3
  28. package/dist/{vite-options-C4evRLpv.cjs.map → vite-options-D4u4kLQI.cjs.map} +1 -1
  29. package/dist/vite.cjs +3 -3
  30. package/dist/vite.cjs.map +1 -1
  31. package/dist/vite.mjs +17 -2
  32. package/dist/vite.mjs.map +1 -1
  33. package/package.json +7 -7
  34. package/vite.d.ts +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "muon-ui",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "type": "module",
5
5
  "types": "./muon.d.ts",
6
6
  "bin": {
@@ -61,18 +61,18 @@
61
61
  },
62
62
  "git": {
63
63
  "tags": [
64
- "0.4.0"
64
+ "0.5.0"
65
65
  ],
66
66
  "branches": [
67
67
  "main"
68
68
  ],
69
69
  "commit": {
70
- "hash": "44d549142c8cbfa13cb29d10be2568652a68bf50",
71
- "shortHash": "44d5491",
72
- "date": "2026-06-23T09:43:36+09:00",
70
+ "hash": "122830dc7b35ced0c4c88c91d3a9dd8b3dee18e2",
71
+ "shortHash": "122830d",
72
+ "date": "2026-06-23T15:36:03+09:00",
73
73
  "message": "Merge branch 'develop'"
74
74
  },
75
- "version": "0.4.0"
75
+ "version": "0.5.0"
76
76
  },
77
77
  "description": "A multi-platform GUI application framework that uses CEF as its backend",
78
78
  "keywords": [
@@ -88,5 +88,5 @@
88
88
  "url": "https://github.com/kekyo/muon-ui.git"
89
89
  },
90
90
  "homepage": "https://github.com/kekyo/muon-ui#readme",
91
- "buildDate": "2026-06-23T10:23:44+09:00"
91
+ "buildDate": "2026-06-23T16:17:35+09:00"
92
92
  }
package/vite.d.ts CHANGED
@@ -16,6 +16,9 @@ export interface MuonViteBuildOptions {
16
16
 
17
17
  /**
18
18
  * Build every supported target from the installed package.
19
+ *
20
+ * @remarks Defaults to true when targets is omitted. Set false to build only
21
+ * the host target.
19
22
  */
20
23
  allTargets?: boolean;
21
24