@nebularstreams/libmui 4.0.2 → 4.0.4

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 (2) hide show
  1. package/dist/index.js +5 -0
  2. package/package.json +4 -2
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ // Package entry copied to dist by the Rollup build.
2
+ // This keeps CSS automatic for consumers while publishing only dist assets.
3
+ import "./libmui.css";
4
+
5
+ export * from "./libmui.esm.min.js";
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@nebularstreams/libmui",
3
3
  "description": "Lightweight, high-performance Mithril widget library for modern websites and JavaScript applications.",
4
- "version": "4.0.2",
4
+ "version": "4.0.4",
5
5
  "type": "module",
6
- "main": "dist/libmui.esm.min.js",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.js",
8
+ "style": "dist/libmui.css",
7
9
  "scripts": {
8
10
  "build": "rollup -c"
9
11
  },