litecms 0.1.0 → 0.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.
Files changed (2) hide show
  1. package/package.json +6 -2
  2. package/tailwind.css +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "litecms",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Timo Weiss",
@@ -22,7 +22,7 @@
22
22
  "bugs": {
23
23
  "url": "https://github.com/exddc/litecms/issues"
24
24
  },
25
- "files": ["dist"],
25
+ "files": ["dist", "tailwind.css"],
26
26
  "main": "./dist/index.js",
27
27
  "types": "./dist/index.d.ts",
28
28
  "exports": {
@@ -53,6 +53,10 @@
53
53
  "./storage": {
54
54
  "types": "./dist/storage/index.d.ts",
55
55
  "default": "./dist/storage/index.js"
56
+ },
57
+ "./tailwind.css": {
58
+ "style": "./tailwind.css",
59
+ "default": "./tailwind.css"
56
60
  }
57
61
  },
58
62
  "peerDependencies": {
package/tailwind.css ADDED
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Import this file in your project's global CSS to include litecms Tailwind classes.
3
+ *
4
+ * In your globals.css:
5
+ * @import "litecms/tailwind.css";
6
+ */
7
+ @source "./dist/**/*.js";