vsn 0.1.80 → 0.1.81

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.80",
3
+ "version": "0.1.81",
4
4
  "description": "SEO Friendly Javascript/Typescript Framework",
5
5
  "keywords": [
6
6
  "framework",
@@ -10,7 +10,7 @@ export class Name extends Attribute {
10
10
  public async setup() {
11
11
  const parentScope: Scope = this.tag.scope.parentScope;
12
12
  if (parentScope) {
13
- parentScope.set(this.tag.parsedAttributes['vsn-name'][1], this.tag.scope);
13
+ parentScope.set(this.getAttributeValue(), this.tag.scope);
14
14
  }
15
15
  }
16
16
  }
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.1.80';
1
+ export const VERSION = '0.1.81';
2
2