Skip to content

Commit

Permalink
fix: update jsdoccomment, comment-parser, and devDeps. (#1139)
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed Aug 4, 2023
1 parent e41df35 commit eed807e
Show file tree
Hide file tree
Showing 15 changed files with 861 additions and 226 deletions.
2 changes: 1 addition & 1 deletion .README/rules/imports-as-dependencies.md
Expand Up @@ -6,7 +6,7 @@ which is not listed in `dependencies` or `devDependencies`.
|||
|---|---|
|Context|everywhere|
|Tags|``|
|Tags|(Any)|
|Recommended|false|
|Settings||
|Options||
Expand Down
1 change: 1 addition & 0 deletions .eslintrc.json
Expand Up @@ -32,6 +32,7 @@
"array-element-newline": 0,
"filenames/match-regex": 0,
"import/extensions": 0,
"import/no-useless-path-segments": 0,
"prefer-named-capture-group": 0,
"unicorn/no-array-reduce": 0,
"unicorn/no-unsafe-regex": 0,
Expand Down
2 changes: 1 addition & 1 deletion docs/rules/imports-as-dependencies.md
Expand Up @@ -8,7 +8,7 @@ which is not listed in `dependencies` or `devDependencies`.
|||
|---|---|
|Context|everywhere|
|Tags|``|
|Tags|(Any)|
|Recommended|false|
|Settings||
|Options||
Expand Down
16 changes: 9 additions & 7 deletions package.json
Expand Up @@ -5,9 +5,9 @@
"url": "http://gajus.com"
},
"dependencies": {
"@es-joy/jsdoccomment": "~0.39.4",
"@es-joy/jsdoccomment": "~0.40.1",
"are-docs-informative": "^0.0.2",
"comment-parser": "1.3.1",
"comment-parser": "1.4.0",
"debug": "^4.3.4",
"escape-string-regexp": "^4.0.0",
"esquery": "^1.5.0",
Expand Down Expand Up @@ -38,18 +38,18 @@
"@types/estree": "^1.0.1",
"@types/lodash.defaultsdeep": "^4.6.7",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"@types/node": "^20.4.7",
"@types/semver": "^7.5.0",
"@types/spdx-expression-parse": "^3.0.2",
"@typescript-eslint/parser": "^6.2.0",
"@typescript-eslint/parser": "^6.2.1",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^6.1.1",
"camelcase": "^6.3.0",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"decamelize": "^5.0.1",
"eslint": "8.45.0",
"eslint-config-canonical": "~41.1.5",
"eslint": "8.46.0",
"eslint-config-canonical": "~41.1.7",
"espree": "^9.6.1",
"gitdown": "^3.1.5",
"glob": "^10.3.3",
Expand Down Expand Up @@ -81,6 +81,7 @@
"*.js": "npm run lint-arg -- --fix"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"name": "eslint-plugin-jsdoc",
"mocha": {
"require": [
Expand Down Expand Up @@ -121,7 +122,8 @@
},
"scripts": {
"tsc": "tsc",
"build": "rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored",
"tsc-build": "tsc -p tsconfig-prod.json",
"build": "rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build || true",
"check-docs": "babel-node ./src/bin/generateDocs.js --check",
"create-docs": "npm run create-options && babel-node ./src/bin/generateDocs.js",
"create-rule": "babel-node ./src/bin/generateRule.js",
Expand Down

0 comments on commit eed807e

Please sign in to comment.