patroon 1.2.6 → 1.3.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.
- package/CHANGELOG.md +6 -0
- package/CONTRIBUTING.md +3 -3
- package/README.md +2 -2
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [v1.3.0](https://github.com/bas080/patroon/compare/v1.2.6...v1.3.0)
|
|
8
|
+
|
|
9
|
+
- Remove testcheck from dev dependency list [`6d0bbfb`](https://github.com/bas080/patroon/commit/6d0bbfbc41a539670f9ce830c6b3f679fafaff7e)
|
|
10
|
+
|
|
7
11
|
#### [v1.2.6](https://github.com/bas080/patroon/compare/v1.2.5...v1.2.6)
|
|
8
12
|
|
|
13
|
+
> 1 October 2022
|
|
14
|
+
|
|
9
15
|
- Fix version script so correct version tag is used [`2c2d4db`](https://github.com/bas080/patroon/commit/2c2d4db8c615451d72cdbc9fb36919a3b69173eb)
|
|
10
16
|
|
|
11
17
|
#### [v1.2.5](https://github.com/bas080/patroon/compare/v1.2.4...v1.2.5)
|
package/CONTRIBUTING.md
CHANGED
|
@@ -42,13 +42,13 @@ npm link patroon
|
|
|
42
42
|
```
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
up to date, audited 3 packages in
|
|
45
|
+
up to date, audited 3 packages in 1s
|
|
46
46
|
|
|
47
47
|
found 0 vulnerabilities
|
|
48
48
|
|
|
49
|
-
added 1 package, and audited
|
|
49
|
+
added 1 package, and audited 79 packages in 1s
|
|
50
50
|
|
|
51
|
-
|
|
51
|
+
52 packages are looking for funding
|
|
52
52
|
run `npm fund` for details
|
|
53
53
|
|
|
54
54
|
found 0 vulnerabilities
|
package/README.md
CHANGED
|
@@ -604,7 +604,7 @@ npx nyc npm t | npx tap-nyc
|
|
|
604
604
|
npx nyc check-coverage
|
|
605
605
|
```
|
|
606
606
|
```
|
|
607
|
-
> patroon@1.
|
|
607
|
+
> patroon@1.3.0 test
|
|
608
608
|
> tape ./src/index.test.js
|
|
609
609
|
-------------|---------|----------|---------|---------|-------------------
|
|
610
610
|
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
|
|
@@ -618,7 +618,7 @@ npx nyc check-coverage
|
|
|
618
618
|
total: 28
|
|
619
619
|
passing: 28
|
|
620
620
|
|
|
621
|
-
duration:
|
|
621
|
+
duration: 37.4s
|
|
622
622
|
|
|
623
623
|
```
|
|
624
624
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "patroon",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Pattern matching library",
|
|
5
5
|
"repository": "github:bas080/patroon",
|
|
6
6
|
"main": "./src/index.js",
|
|
@@ -29,8 +29,7 @@
|
|
|
29
29
|
"license": "GPL-3.0",
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"tape": "^5.x",
|
|
32
|
-
"tape-check": "^1.0.0-rc.0"
|
|
33
|
-
"testcheck": "^1.0.0-rc.2"
|
|
32
|
+
"tape-check": "^1.0.0-rc.0"
|
|
34
33
|
},
|
|
35
34
|
"contributors": [
|
|
36
35
|
{
|