9179: Update npm deps r=matklad a=lnicola



Co-authored-by: Laurențiu Nicola <lnicola@dend.ro>
This commit is contained in:
bors[bot] 2021-07-12 14:45:48 +00:00 committed by GitHub
commit 745be39383
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 560 additions and 541 deletions

View File

@ -1,6 +1,8 @@
** **
!language-configuration.json !language-configuration.json
!out/src/main.js !out
out/**
!out/src
!package.json !package.json
!package-lock.json !package-lock.json
!ra_syntax_tree.tmGrammar.json !ra_syntax_tree.tmGrammar.json

File diff suppressed because it is too large Load Diff

View File

@ -21,7 +21,7 @@
"Programming Languages" "Programming Languages"
], ],
"engines": { "engines": {
"vscode": "^1.53.0" "vscode": "^1.57.0"
}, },
"enableProposedApi": true, "enableProposedApi": true,
"scripts": { "scripts": {
@ -41,22 +41,22 @@
}, },
"devDependencies": { "devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0", "@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0", "@rollup/plugin-node-resolve": "^13.0.0",
"@types/glob": "^7.1.3", "@types/glob": "^7.1.4",
"@types/mocha": "^8.0.4", "@types/mocha": "^8.2.3",
"@types/node": "~12.12.6", "@types/node": "~14.17.5",
"@types/node-fetch": "^2.5.7", "@types/node-fetch": "^2.5.11",
"@types/vscode": "^1.53.0", "@types/vscode": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^4.9.0", "@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.9.0", "@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.15.0", "eslint": "^7.30.0",
"glob": "^7.1.6", "glob": "^7.1.6",
"mocha": "^8.2.1", "mocha": "^9.0.2",
"rollup": "^2.34.2", "rollup": "^2.51.1",
"tslib": "^2.0.3", "tslib": "^2.3.0",
"typescript": "^4.1.2", "typescript": "^4.3.5",
"typescript-formatter": "^7.2.2", "typescript-formatter": "^7.2.2",
"vsce": "^1.85.0", "vsce": "^1.95.1",
"vscode-test": "^1.5.1" "vscode-test": "^1.5.1"
}, },
"activationEvents": [ "activationEvents": [

View File

@ -16,6 +16,7 @@ export default {
external: [...nodeBuiltins, 'vscode'], external: [...nodeBuiltins, 'vscode'],
output: { output: {
file: './out/src/main.js', file: './out/src/main.js',
format: 'cjs' format: 'cjs',
exports: 'default'
} }
}; };