@pearpages/heatmap 0.1.3 → 0.1.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/README.md +1 -1
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  When using the library, make sure to import the CSS file from the `dist` folder:
6
6
 
7
7
  ```tsx
8
- import '@pearpages/heatmap/dist/index.css';
8
+ import '@pearpages/heatmap/styles.css';
9
9
  ```
10
10
 
11
11
  This ensures that all necessary styles are applied to the heatmap components.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pearpages/heatmap",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/pearpages/heatmap"
@@ -14,12 +14,14 @@
14
14
  ".": {
15
15
  "import": "./dist/index.js",
16
16
  "types": "./dist/index.d.ts"
17
- }
17
+ },
18
+ "./styles.css": "./dist/index.css"
18
19
  },
19
20
  "types": "./dist/index.d.ts",
20
21
  "files": [
21
22
  "dist"
22
23
  ],
24
+ "style": "./dist/index.css",
23
25
  "sideEffects": false,
24
26
  "scripts": {
25
27
  "build": "tsup",