Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
aeschli committed Sep 16, 2020
1 parent 2d7b17e commit 5fe82ed
Show file tree
Hide file tree
Showing 6 changed files with 709 additions and 504 deletions.
10 changes: 9 additions & 1 deletion .eslintrc.json
Expand Up @@ -9,7 +9,15 @@
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/class-name-casing": "warn",
"@typescript-eslint/naming-convention": [
"warn",
{
"selector": "typeLike",
"format": [
"PascalCase"
]
}
],
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
Expand Down
4 changes: 4 additions & 0 deletions .mocharc.json
@@ -0,0 +1,4 @@
{
"ui": "tdd",
"color": true
}
2 changes: 1 addition & 1 deletion .npmignore
Expand Up @@ -4,7 +4,6 @@ lib/*/*/*.d.ts
!lib/*/*/htmlScanner.d.ts
lib/*/test/
src/
test/
build/
.eslintrc
.gitignore
Expand All @@ -13,3 +12,4 @@ yarn.lock
tslint.json
.travis.yml
gulpfile.js
.mocharc.json
20 changes: 10 additions & 10 deletions package.json
Expand Up @@ -15,21 +15,21 @@
"url": "https://github.com/Microsoft/vscode-html-languageservice"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/mocha": "^8.0.3",
"@types/node": "^10.12.21",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"js-beautify": "^1.11.0",
"mocha": "^7.1.2",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"js-beautify": "^1.13.0",
"mocha": "^8.1.3",
"rimraf": "^3.0.2",
"typescript": "^3.8.3",
"vscode-web-custom-data": "^0.1.4"
"typescript": "^4.0.2",
"vscode-web-custom-data": "^0.3.1"
},
"dependencies": {
"vscode-languageserver-textdocument": "^1.0.1",
"vscode-languageserver-types": "3.16.0-next.2",
"vscode-nls": "^4.1.2",
"vscode-nls": "^5.0.0",
"vscode-uri": "^2.1.2"
},
"scripts": {
Expand All @@ -40,7 +40,7 @@
"watch": "tsc -w -p ./src && npm run copy-jsbeautify",
"clean": "rimraf lib",
"remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js",
"test": "npm run compile && mocha && npm run lint",
"test": "npm run compile && mocha ./lib/umd/test/*.js && npm run lint",
"lint": "eslint src/**/*.ts",
"install-types-next": "yarn add vscode-languageserver-types@next -f -S && yarn add vscode-languageserver-textdocument@next -f -S",
"copy-jsbeautify": "node ./build/copy-jsbeautify.js",
Expand Down
3 changes: 0 additions & 3 deletions test/mocha.opts

This file was deleted.

0 comments on commit 5fe82ed

Please sign in to comment.