@es-joy/jsdoccomment
Advanced tools
Comparing version 0.9.0-alpha.2 to 0.9.0-alpha.3
# CHANGES for `@es-joy/jsdoccomment` | ||
## 0.9.0-alpha.3 | ||
- Fix: Due to `comment-parser` still needing changes, revert for now to alpha.1 | ||
## 0.9.0-alpha.2 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "@es-joy/jsdoccomment", | ||
"version": "0.9.0-alpha.2", | ||
"version": "0.9.0-alpha.3", | ||
"author": "Brett Zamir <brettz9@yahoo.com>", | ||
@@ -15,4 +15,4 @@ "contributors": [], | ||
"exports": { | ||
"import": "./src/index.js", | ||
"require": "./dist/index.cjs.cjs" | ||
"require": "./dist/index.cjs.cjs", | ||
"import": "./src/index.js" | ||
}, | ||
@@ -41,3 +41,3 @@ "c8": { | ||
"dependencies": { | ||
"comment-parser": "1.1.6-beta.1", | ||
"comment-parser": "1.1.6-beta.0", | ||
"esquery": "^1.4.0", | ||
@@ -47,5 +47,5 @@ "jsdoc-type-pratt-parser": "1.0.4" | ||
"devDependencies": { | ||
"@babel/core": "^7.14.8", | ||
"@babel/core": "^7.14.6", | ||
"@babel/plugin-syntax-class-properties": "^7.12.13", | ||
"@babel/preset-env": "^7.14.8", | ||
"@babel/preset-env": "^7.14.7", | ||
"@brettz9/eslint-plugin": "^1.0.3", | ||
@@ -72,3 +72,3 @@ "@rollup/plugin-babel": "^5.3.0", | ||
"mocha": "^9.0.2", | ||
"rollup": "^2.53.3" | ||
"rollup": "^2.52.7" | ||
}, | ||
@@ -75,0 +75,0 @@ "scripts": { |
@@ -0,1 +1,3 @@ | ||
// Todo: We ideally would use comment-parser's es6 directory, but as the repo | ||
// is CommonJS, it will not be properly treated as ESM from here | ||
/* eslint-disable prefer-named-capture-group -- Temporary */ | ||
@@ -6,11 +8,11 @@ import { | ||
getJoiner | ||
} from 'comment-parser/parser/tokenizers/description'; | ||
} from 'comment-parser/lib/parser/tokenizers/description.js'; | ||
import { | ||
seedBlock, | ||
seedTokens | ||
} from 'comment-parser/util'; | ||
} from 'comment-parser/lib/util.js'; | ||
import {parse as commentParser} from 'comment-parser'; | ||
import nameTokenizer from 'comment-parser/parser/tokenizers/name'; | ||
import tagTokenizer from 'comment-parser/parser/tokenizers/tag'; | ||
import typeTokenizer from 'comment-parser/parser/tokenizers/type'; | ||
import nameTokenizer from 'comment-parser/lib/parser/tokenizers/name.js'; | ||
import tagTokenizer from 'comment-parser/lib/parser/tokenizers/tag.js'; | ||
import typeTokenizer from 'comment-parser/lib/parser/tokenizers/type.js'; | ||
@@ -17,0 +19,0 @@ export const hasSeeWithLink = (spec) => { |
Sorry, the diff of this file is not supported yet
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
44289
+ Addedcomment-parser@1.1.6-beta.0(transitive)
- Removedcomment-parser@1.1.6-beta.1(transitive)
Updatedcomment-parser@1.1.6-beta.0