live-atom 1.0.0 → 1.1.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 (2) hide show
  1. package/main.js +2 -2
  2. package/package.json +4 -1
package/main.js CHANGED
@@ -52,10 +52,10 @@ function init() {
52
52
 
53
53
  init();
54
54
 
55
- const atomLive = {
55
+ const liveAtom = {
56
56
  init,
57
57
  addClass: parseCustomRule,
58
58
  };
59
59
 
60
60
  export { init, parseCustomRule as addClass };
61
- export default atomLive;
61
+ export default liveAtom;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "live-atom",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "A lightweight runtime css library inspired by tailwind css.",
5
5
  "keywords": [
6
6
  "css",
@@ -20,6 +20,9 @@
20
20
  "author": "Musharaf Shaik",
21
21
  "type": "module",
22
22
  "main": "main.js",
23
+ "exports": {
24
+ ".": "./main.js"
25
+ },
23
26
  "scripts": {
24
27
  "test": "echo \"Error: no test specified\" && exit 1"
25
28
  }