check-types-mini 7.0.11 → 7.0.12

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.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @name check-types-mini
3
3
  * @fileoverview Validate options object
4
- * @version 7.0.11
4
+ * @version 7.0.12
5
5
  * @author Roy Revelt, Codsen Ltd
6
6
  * @license MIT
7
7
  * {@link https://codsen.com/os/check-types-mini/}
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @name check-types-mini
3
3
  * @fileoverview Validate options object
4
- * @version 7.0.11
4
+ * @version 7.0.12
5
5
  * @author Roy Revelt, Codsen Ltd
6
6
  * @license MIT
7
7
  * {@link https://codsen.com/os/check-types-mini/}
@@ -25,7 +25,7 @@ current = ${JSON.stringify(h,null,4)}
25
25
  /**
26
26
  * @name arrayiffy-if-string
27
27
  * @fileoverview Put non-empty strings into arrays, turn empty-ones into empty arrays. Bypass everything else.
28
- * @version 4.0.11
28
+ * @version 4.0.12
29
29
  * @author Roy Revelt, Codsen Ltd
30
30
  * @license MIT
31
31
  * {@link https://codsen.com/os/arrayiffy-if-string/}
@@ -33,7 +33,7 @@ current = ${JSON.stringify(h,null,4)}
33
33
  /**
34
34
  * @name ast-monkey-traverse
35
35
  * @fileoverview Utility library to traverse AST
36
- * @version 3.0.11
36
+ * @version 3.0.12
37
37
  * @author Roy Revelt, Codsen Ltd
38
38
  * @license MIT
39
39
  * {@link https://codsen.com/os/ast-monkey-traverse/}
@@ -41,7 +41,7 @@ current = ${JSON.stringify(h,null,4)}
41
41
  /**
42
42
  * @name ast-monkey-util
43
43
  * @fileoverview Utility library of AST helper functions
44
- * @version 2.0.11
44
+ * @version 2.0.12
45
45
  * @author Roy Revelt, Codsen Ltd
46
46
  * @license MIT
47
47
  * {@link https://codsen.com/os/ast-monkey-util/}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "check-types-mini",
3
- "version": "7.0.11",
3
+ "version": "7.0.12",
4
4
  "description": "Validate options object",
5
5
  "keywords": [
6
6
  "compare",
@@ -37,9 +37,10 @@
37
37
  "scripts": {
38
38
  "build": "node '../../ops/scripts/esbuild.js' && yarn run dts",
39
39
  "dev": "DEV=true node '../../ops/scripts/esbuild.js' && yarn run dts",
40
+ "devtest": "c8 yarn run unit && yarn run examples && yarn run lint",
40
41
  "dts": "rollup -c && yarn run prettier 'types/index.d.ts' --write",
41
42
  "examples": "node '../../ops/scripts/run-examples.js'",
42
- "lect": "node '../../ops/lect/lect.js'",
43
+ "lect": "node '../../ops/lect/lect.js' && yarn run prettier 'README.md' '.all-contributorsrc' 'rollup.config.js' --write",
43
44
  "letspublish": "yarn publish || :",
44
45
  "lint": "eslint . --fix",
45
46
  "perf": "node perf/check.js",
@@ -47,7 +48,7 @@
47
48
  "prettier": "prettier",
48
49
  "prettier:format": "prettier --write '**/*.{ts,tsx,md}' --no-error-on-unmatched-pattern",
49
50
  "pretest": "yarn run lect && yarn run build",
50
- "test": "c8 yarn run unit && yarn run examples && yarn run lint",
51
+ "test": "yarn run devtest",
51
52
  "unit": "uvu test"
52
53
  },
53
54
  "engines": {
@@ -68,8 +69,8 @@
68
69
  }
69
70
  },
70
71
  "dependencies": {
71
- "arrayiffy-if-string": "^4.0.11",
72
- "ast-monkey-traverse": "^3.0.11",
72
+ "arrayiffy-if-string": "^4.0.12",
73
+ "ast-monkey-traverse": "^3.0.12",
73
74
  "lodash.intersection": "^4.4.0",
74
75
  "lodash.pullall": "^4.2.0",
75
76
  "matcher": "^5.0.0",