valgen 4.2.2 → 4.2.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.
- package/CHANGELOG.md +7 -0
- package/cjs/core/context.js +2 -2
- package/cjs/rules/is-array.js +4 -4
- package/esm/core/context.js +2 -2
- package/esm/rules/is-array.js +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/cjs/core/context.js
CHANGED
|
@@ -51,8 +51,8 @@ class Context {
|
|
|
51
51
|
return x;
|
|
52
52
|
const k = m[1];
|
|
53
53
|
let v = issue[k];
|
|
54
|
-
if (!v && m[1] === 'label' && (this.
|
|
55
|
-
v = '`' + (this.
|
|
54
|
+
if (!v && m[1] === 'label' && (this.location || this.property))
|
|
55
|
+
v = '`' + (this.location || this.property) + '`';
|
|
56
56
|
if (v != null)
|
|
57
57
|
return v;
|
|
58
58
|
if (m[2])
|
package/cjs/rules/is-array.js
CHANGED
|
@@ -17,7 +17,7 @@ function isArray(itemValidator, options) {
|
|
|
17
17
|
}
|
|
18
18
|
if (!itemValidator)
|
|
19
19
|
return input;
|
|
20
|
-
const location = context.location || '';
|
|
20
|
+
// const location = context.location || '';
|
|
21
21
|
const itemContext = context.extend();
|
|
22
22
|
let i;
|
|
23
23
|
let v;
|
|
@@ -26,10 +26,10 @@ function isArray(itemValidator, options) {
|
|
|
26
26
|
for (i = 0; i < l; i++) {
|
|
27
27
|
v = input[i];
|
|
28
28
|
itemContext.scope = input;
|
|
29
|
-
itemContext.location = location + '[' + i + ']';
|
|
30
|
-
itemContext.
|
|
29
|
+
// itemContext.location = location + '[' + i + ']';
|
|
30
|
+
itemContext.location = context.label
|
|
31
31
|
? context.label + `[${i}]`
|
|
32
|
-
:
|
|
32
|
+
: `<Array>[${i}]`;
|
|
33
33
|
itemContext.index = i;
|
|
34
34
|
v = itemValidator(v, itemContext);
|
|
35
35
|
out.push(v);
|
package/esm/core/context.js
CHANGED
|
@@ -48,8 +48,8 @@ export class Context {
|
|
|
48
48
|
return x;
|
|
49
49
|
const k = m[1];
|
|
50
50
|
let v = issue[k];
|
|
51
|
-
if (!v && m[1] === 'label' && (this.
|
|
52
|
-
v = '`' + (this.
|
|
51
|
+
if (!v && m[1] === 'label' && (this.location || this.property))
|
|
52
|
+
v = '`' + (this.location || this.property) + '`';
|
|
53
53
|
if (v != null)
|
|
54
54
|
return v;
|
|
55
55
|
if (m[2])
|
package/esm/rules/is-array.js
CHANGED
|
@@ -14,7 +14,7 @@ export function isArray(itemValidator, options) {
|
|
|
14
14
|
}
|
|
15
15
|
if (!itemValidator)
|
|
16
16
|
return input;
|
|
17
|
-
const location = context.location || '';
|
|
17
|
+
// const location = context.location || '';
|
|
18
18
|
const itemContext = context.extend();
|
|
19
19
|
let i;
|
|
20
20
|
let v;
|
|
@@ -23,10 +23,10 @@ export function isArray(itemValidator, options) {
|
|
|
23
23
|
for (i = 0; i < l; i++) {
|
|
24
24
|
v = input[i];
|
|
25
25
|
itemContext.scope = input;
|
|
26
|
-
itemContext.location = location + '[' + i + ']';
|
|
27
|
-
itemContext.
|
|
26
|
+
// itemContext.location = location + '[' + i + ']';
|
|
27
|
+
itemContext.location = context.label
|
|
28
28
|
? context.label + `[${i}]`
|
|
29
|
-
:
|
|
29
|
+
: `<Array>[${i}]`;
|
|
30
30
|
itemContext.index = i;
|
|
31
31
|
v = itemValidator(v, itemContext);
|
|
32
32
|
out.push(v);
|
package/package.json
CHANGED