patroon 0.1.1 → 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 (3) hide show
  1. package/README.md +6 -2
  2. package/README.mz +5 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Patroon
2
2
 
3
- ![Code Coverage](https://img.shields.io/badge/coverage-100%25-green)
3
+ ![Code Coverage](https://img.shields.io/badge/coverage-100%25-green?style=flat-square)
4
+ ![NPM](https://img.shields.io/npm/v/patroon?color=blue&style=flat-square)
4
5
 
5
6
  Pattern matching in Javascript without additional syntax.
6
7
 
@@ -17,6 +18,8 @@ Pattern matching in Javascript without additional syntax.
17
18
 
18
19
  ## Installation
19
20
 
21
+ [Patroon][9] is hosted on the NPM repository.
22
+
20
23
  ```bash
21
24
  npm install patroon
22
25
  ```
@@ -329,7 +332,7 @@ npx nyc npm t && npx nyc check-coverage
329
332
  ```
330
333
  ```
331
334
 
332
- > patroon@0.1.1 test
335
+ > patroon@0.1.2 test
333
336
  > tape ./src/index.test.js
334
337
 
335
338
  TAP version 13
@@ -404,3 +407,4 @@ polite. Some suggestions for contributions:
404
407
  [6]:https://github.com/bas080/markatzea
405
408
  [7]:https://stackoverflow.com/questions/50452844/functional-programming-style-pattern-matching-in-javascript/67376827#67376827
406
409
  [8]:https://github.com/istanbuljs/nyc
410
+ [9]:https://www.npmjs.com/package/patroon
package/README.mz CHANGED
@@ -1,6 +1,7 @@
1
1
  # Patroon
2
2
 
3
- ![Code Coverage](https://img.shields.io/badge/coverage-100%25-green)
3
+ ![Code Coverage](https://img.shields.io/badge/coverage-100%25-green?style=flat-square)
4
+ ![NPM](https://img.shields.io/npm/v/patroon?color=blue&style=flat-square)
4
5
 
5
6
  Pattern matching in Javascript without additional syntax.
6
7
 
@@ -17,6 +18,8 @@ Pattern matching in Javascript without additional syntax.
17
18
 
18
19
  ## Installation
19
20
 
21
+ [Patroon][9] is hosted on the NPM repository.
22
+
20
23
  ```bash
21
24
  npm install patroon
22
25
  ```
@@ -367,3 +370,4 @@ polite. Some suggestions for contributions:
367
370
  [6]:https://github.com/bas080/markatzea
368
371
  [7]:https://stackoverflow.com/questions/50452844/functional-programming-style-pattern-matching-in-javascript/67376827#67376827
369
372
  [8]:https://github.com/istanbuljs/nyc
373
+ [9]:https://www.npmjs.com/package/patroon
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patroon",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Pattern matching library",
5
5
  "repository": "github:bas080/patroon",
6
6
  "main": "./src/index.js",