vsn 0.1.91 → 0.1.92

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vsn",
3
- "version": "0.1.91",
3
+ "version": "0.1.92",
4
4
  "description": "SEO Friendly Javascript/Typescript Framework",
5
5
  "keywords": [
6
6
  "framework",
@@ -123,7 +123,7 @@ export class List extends Attribute {
123
123
  for (let i: number = 0; i < this.tags.length; i++) {
124
124
  const tag: Tag = this.tags[i];
125
125
  const listItem = tag.scope.get(this.listItemName);
126
- if ([listItem, listItem.wrapped].indexOf(item) > -1) {
126
+ if ([listItem, listItem.data, listItem.wrapped].indexOf(item) > -1) {
127
127
  tag.deconstruct();
128
128
  tag.removeFromDOM();
129
129
  this.tags.splice(i, 1);
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.1.91';
1
+ export const VERSION = '0.1.92';
2
2