wrec 0.30.1 → 0.30.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 (2) hide show
  1. package/package.json +1 -1
  2. package/scripts/lint.js +2 -0
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "wrec",
3
3
  "description": "a small library that greatly simplifies building web components",
4
4
  "author": "R. Mark Volkmann",
5
- "version": "0.30.1",
5
+ "version": "0.30.2",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
package/scripts/lint.js CHANGED
@@ -12,6 +12,7 @@
12
12
  // - undefined context functions called in expressions
13
13
  // - extra arguments passed to methods and context functions
14
14
  // - incompatible method arguments in expressions
15
+ // - incompatible context function arguments in expressions
15
16
  // - arithmetic type errors in expressions
16
17
  // - invalid computed property references and calls to non-method members
17
18
  // - invalid event handler references
@@ -27,6 +28,7 @@
27
28
  // - invalid `useState` map entries
28
29
  // - unsupported HTML attributes in templates
29
30
  // - invalid HTML element nesting in templates
31
+ // - invalid ref attribute targets
30
32
  // - duplicate ref attribute values
31
33
 
32
34
  import fs from 'node:fs';