bump: Update dependencies specially acorn and minimist
This commit is contained in:
parent
3d5ebc7509
commit
ea5129b888
3 changed files with 638 additions and 513 deletions
42
package.json
42
package.json
|
|
@ -98,17 +98,17 @@
|
|||
"@types/highlight.js": "9.12.3",
|
||||
"@types/hogan.js": "3.0.0",
|
||||
"@types/html-webpack-plugin": "3.2.2",
|
||||
"@types/jest": "25.1.1",
|
||||
"@types/mini-css-extract-plugin": "0.9.0",
|
||||
"@types/mkdirp": "0.5.2",
|
||||
"@types/node": "13.7.0",
|
||||
"@types/jest": "25.1.4",
|
||||
"@types/mini-css-extract-plugin": "0.9.1",
|
||||
"@types/mkdirp": "1.0.0",
|
||||
"@types/node": "13.9.1",
|
||||
"@types/nopt": "3.0.29",
|
||||
"@types/webpack": "4.41.5",
|
||||
"@typescript-eslint/eslint-plugin": "2.19.0",
|
||||
"@typescript-eslint/parser": "2.19.0",
|
||||
"@types/webpack": "4.41.7",
|
||||
"@typescript-eslint/eslint-plugin": "2.23.0",
|
||||
"@typescript-eslint/parser": "2.23.0",
|
||||
"autoprefixer": "9.7.4",
|
||||
"bulma": "^0.8.0",
|
||||
"clipboard": "2.0.4",
|
||||
"clipboard": "2.0.6",
|
||||
"codacy-coverage": "3.4.0",
|
||||
"copy-webpack-plugin": "5.1.1",
|
||||
"css-loader": "3.4.2",
|
||||
|
|
@ -116,43 +116,45 @@
|
|||
"eslint": "6.8.0",
|
||||
"eslint-config-prettier": "6.10.0",
|
||||
"eslint-plugin-import": "2.20.1",
|
||||
"eslint-plugin-jest": "23.6.0",
|
||||
"eslint-plugin-json": "2.0.1",
|
||||
"eslint-plugin-jest": "23.8.2",
|
||||
"eslint-plugin-json": "2.1.0",
|
||||
"eslint-plugin-node": "11.0.0",
|
||||
"eslint-plugin-optimize-regex": "1.1.7",
|
||||
"eslint-plugin-promise": "4.2.1",
|
||||
"eslint-plugin-sonarjs": "0.5.0",
|
||||
"file-loader": "5.0.2",
|
||||
"file-loader": "5.1.0",
|
||||
"handlebars": "4.7.3",
|
||||
"handlebars-loader": "1.7.1",
|
||||
"html-webpack-plugin": "3.2.0",
|
||||
"husky": "4.2.1",
|
||||
"husky": "4.2.3",
|
||||
"image-webpack-loader": "6.0.0",
|
||||
"is-ci-cli": "2.0.0",
|
||||
"jest": "25.1.0",
|
||||
"lint-staged": "10.0.7",
|
||||
"lint-staged": "10.0.8",
|
||||
"markdown-toc": "^1.2.0",
|
||||
"mini-css-extract-plugin": "0.9.0",
|
||||
"mkdirp": "1.0.3",
|
||||
"nopt": "4.0.1",
|
||||
"postcss": "7.0.26",
|
||||
"nopt": "4.0.3",
|
||||
"postcss": "7.0.27",
|
||||
"postcss-cli": "7.1.0",
|
||||
"postcss-import": "12.0.1",
|
||||
"postcss-loader": "3.0.0",
|
||||
"postcss-preset-env": "6.7.0",
|
||||
"prettier": "1.19.1",
|
||||
"ts-jest": "25.2.0",
|
||||
"ts-jest": "25.2.1",
|
||||
"ts-loader": "6.2.1",
|
||||
"ts-node": "8.6.2",
|
||||
"typescript": "3.7.5",
|
||||
"typescript": "3.8.3",
|
||||
"url-loader": "3.0.0",
|
||||
"webpack": "4.41.5",
|
||||
"webpack-cli": "3.3.10",
|
||||
"webpack": "4.42.0",
|
||||
"webpack-cli": "3.3.11",
|
||||
"webpack-dev-server": "3.10.3",
|
||||
"whatwg-fetch": "3.0.0"
|
||||
},
|
||||
"resolutions": {
|
||||
"lodash": "4.17.15"
|
||||
"lodash": ">=4.17.15",
|
||||
"minimist": ">=1.2.2",
|
||||
"acorn": ">=7.1.1"
|
||||
},
|
||||
"license": "MIT",
|
||||
"files": [
|
||||
|
|
|
|||
|
|
@ -182,12 +182,16 @@ export function parse(diffInput: string, config: DiffParserConfig = {}): DiffFil
|
|||
}
|
||||
|
||||
/* Create block metadata */
|
||||
// eslint-disable-next-line
|
||||
// @ts-ignore
|
||||
currentBlock = {
|
||||
lines: [],
|
||||
// eslint-disable-next-line
|
||||
// @ts-ignore
|
||||
oldStartLine: oldLine,
|
||||
// eslint-disable-next-line
|
||||
// @ts-ignore
|
||||
oldStartLine2: oldLine2,
|
||||
// eslint-disable-next-line
|
||||
// @ts-ignore
|
||||
newStartLine: newLine,
|
||||
header: line,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue