@es-joy/jsdoccomment
Advanced tools
Comparing version 0.10.8 to 0.11.0
# CHANGES for `@es-joy/jsdoccomment` | ||
## 0.11.0 | ||
- Update: For `@typescript/eslint-parser@5`, add `PropertyDefinition` | ||
## 0.10.8 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "@es-joy/jsdoccomment", | ||
"version": "0.10.8", | ||
"version": "0.11.0", | ||
"author": "Brett Zamir <brettz9@yahoo.com>", | ||
@@ -28,11 +28,2 @@ "contributors": [], | ||
], | ||
"scripts": { | ||
"prepublishOnly": "pnpm i && npm run rollup", | ||
"rollup": "rollup -c", | ||
"eslint": "eslint --ext=js,cjs,md,html .", | ||
"lint": "npm run eslint", | ||
"mocha": "mocha --parallel --require chai/register-expect", | ||
"c8": "c8 npm run mocha", | ||
"test": "npm run lint && npm run rollup && npm run c8" | ||
}, | ||
"repository": { | ||
@@ -80,3 +71,11 @@ "type": "git", | ||
"rollup": "^2.56.3" | ||
}, | ||
"scripts": { | ||
"rollup": "rollup -c", | ||
"eslint": "eslint --ext=js,cjs,md,html .", | ||
"lint": "npm run eslint", | ||
"mocha": "mocha --parallel --require chai/register-expect", | ||
"c8": "c8 npm run mocha", | ||
"test": "npm run lint && npm run rollup && npm run c8" | ||
} | ||
} | ||
} |
@@ -49,2 +49,3 @@ /** | ||
switch (grandparent.type) { | ||
case 'PropertyDefinition': | ||
case 'ClassProperty': | ||
@@ -119,3 +120,4 @@ case 'TSDeclareFunction': | ||
'ObjectProperty', | ||
'ClassProperty' | ||
'ClassProperty', | ||
'PropertyDefinition' | ||
]); | ||
@@ -122,0 +124,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44828
1004