cem-plugin-wrec 0.0.4 → 0.1.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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -119,7 +119,7 @@ export default function wrecPlugin() {
119
119
  (declaration) => declaration.kind === "class"
120
120
  );
121
121
 
122
- for (aClass of classes) {
122
+ for (const aClass of classes) {
123
123
  const { members } = aClass;
124
124
  if (members) {
125
125
  aClass.members = members.filter(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cem-plugin-wrec",
3
- "version": "0.0.4",
3
+ "version": "0.1.0",
4
4
  "description": "plugin for use with @custom-elements-manifest/analyzer",
5
5
  "type": "module",
6
6
  "main": "index.js",