wrec 0.16.0 → 0.16.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/dist/wrec.es.js +1 -1
  2. package/package.json +5 -8
package/dist/wrec.es.js CHANGED
@@ -461,7 +461,7 @@ class l extends HTMLElement {
461
461
  n[s] = e;
462
462
  }
463
463
  /**
464
- * @param state - State object
464
+ * @param state - WrecState object
465
465
  * @param map - object whose keys are state properties and
466
466
  * whose values are component properties
467
467
  */
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.16.0",
5
+ "version": "0.16.2",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -12,14 +12,11 @@
12
12
  "web",
13
13
  "component"
14
14
  ],
15
- "main": "dist/wrec.min.js",
16
- "exports": {
17
- "import": "./dist/wrec.min.js",
18
- "require": "./dist/wrec.min.js"
19
- },
15
+ "type": "module",
16
+ "module": "dist/wrec.es.js",
17
+ "main": "dist/wrec.umd.js",
20
18
  "files": [
21
- "dist/wrec.es.js",
22
- "dist/wrec.umd.js",
19
+ "dist",
23
20
  "README.md"
24
21
  ],
25
22
  "scripts": {