@marko/compiler 5.23.4 → 5.23.5

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.
@@ -328,9 +328,8 @@ class TagLoader {
328
328
  * typescript / jsdoc types.
329
329
  */
330
330
  types(value) {
331
- var tag = this.tag;
332
- var dirname = this.dirname;
333
- tag.types = nodePath.resolve(dirname, value);
331
+ this.tag.types =
332
+ value[0] === "." ? nodePath.resolve(this.dirname, value) : value;
334
333
  }
335
334
 
336
335
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@marko/compiler",
3
3
  "description": "Marko template to JS compiler.",
4
- "version": "5.23.4",
4
+ "version": "5.23.5",
5
5
  "author": "Dylan Piercey <dpiercey@ebay.com>",
6
6
  "bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
7
7
  "dependencies": {
@@ -30,7 +30,7 @@
30
30
  "strip-json-comments": "^3.1.1"
31
31
  },
32
32
  "devDependencies": {
33
- "@marko/translator-default": "^5.22.4"
33
+ "@marko/translator-default": "^5.22.5"
34
34
  },
35
35
  "files": [
36
36
  "dist",