nani-reset 1.1.1 → 1.1.3

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 +8 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,7 @@
1
- ![npm version](https://img.shields.io/npm/v/nani-reset)
2
1
  ![npm bundle size](https://img.shields.io/bundlephobia/minzip/nani-reset)
3
2
  ![license](https://img.shields.io/npm/l/nani-reset)
3
+ [![npm](https://img.shields.io/npm/v/nani-reset)](https://www.npmjs.com/package/nani-reset)
4
+
4
5
 
5
6
  # nani-reset ✨
6
7
 
@@ -22,6 +23,12 @@ npm install nani-reset
22
23
 
23
24
  then import it in your project:
24
25
 
26
+ the default import is the minified version
27
+
28
+ ```css
29
+ @import "nani-reset";
30
+ ```
31
+
25
32
  ```css
26
33
  @import "nani-reset/reset.css";
27
34
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nani-reset",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "a minimal and modern css reset for predictable styling",
5
5
  "author": "D. H. Alezard (Nani)",
6
6
  "license": "MIT",
@@ -26,7 +26,7 @@
26
26
  "reset.css",
27
27
  "reset.min.css"
28
28
  ],
29
- "style": "reset.css",
29
+ "style": "reset.min.css",
30
30
  "scripts": {
31
31
  "build": "cleancss -o reset.min.css reset.css"
32
32
  },