@tbela99/css-parser 0.0.1-alpha3 → 0.0.1-alpha5

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.
package/.gitattributes CHANGED
@@ -4,6 +4,7 @@
4
4
  /package-lock.json export-ignore
5
5
  /.gitignore export-ignore
6
6
  /.gitattributes export-ignore
7
+ /coverage/ export-ignore
7
8
  /rollup.config.mjs export-ignore
8
9
  /tsconfig.json export-ignore
9
10
  # exclude all files in test/ from stats
@@ -11,6 +12,7 @@
11
12
  /docs/** linguist-vendored
12
13
  /tools/** linguist-vendored
13
14
  /dist/** linguist-vendored
15
+ /coverage/** linguist-vendored
14
16
  #
15
17
  # do not replace lf by crlf
16
18
  *.css text
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![cov](https://tbela99.github.io/css-parser/badges/coverage.svg)](https://github.com/tbela99/css-parser/actions)
2
+
1
3
  # css-parser
2
4
 
3
5
  CSS parser for node and the browser
@@ -54,12 +56,6 @@ Include ParseOptions and RenderOptions
54
56
 
55
57
  ## Parsing
56
58
 
57
- ```javascript
58
- import {parse} from '@tbela99/css-parser';
59
-
60
- const {ast, errors} = parse(css);
61
- ```
62
-
63
59
  ### Usage
64
60
 
65
61
  ```javascript