|
26 | 26 | "R Markdown"
|
27 | 27 | ],
|
28 | 28 | "engines": {
|
29 |
| - "vscode": "^1.67.0" |
| 29 | + "vscode": "^1.75.0" |
30 | 30 | },
|
31 | 31 | "activationEvents": [
|
32 |
| - "onLanguage:r", |
33 |
| - "onLanguage:rd", |
34 |
| - "onLanguage:rmd", |
35 |
| - "onLanguage:debian-control.r", |
36 |
| - "onLanguage:namespace.r", |
37 |
| - "onLanguage:buildignore.r", |
38 | 32 | "workspaceContains:**/*.{rproj,Rproj,r,R,rd,Rd,rmd,Rmd}",
|
39 |
| - "onCommand:r.createRTerm", |
40 |
| - "onCommand:r.runSource", |
41 |
| - "onCommand:r.knitRmd", |
42 |
| - "onCommand:r.knitRmdToPdf", |
43 |
| - "onCommand:r.knitRmdToHtml", |
44 |
| - "onCommand:r.knitRmdToAll", |
45 |
| - "onCommand:r.runSourcewithEcho", |
46 |
| - "onCommand:r.runSelection", |
47 | 33 | "onCommand:r.runSelectionInActiveTerm",
|
48 |
| - "onCommand:r.selectCurrentChunk", |
49 |
| - "onCommand:r.runCurrentChunk", |
50 |
| - "onCommand:r.runCurrentChunkAndMove", |
51 |
| - "onCommand:r.runPreviousChunk", |
52 |
| - "onCommand:r.runNextChunk", |
53 |
| - "onCommand:r.runAboveChunks", |
54 |
| - "onCommand:r.runCurrentAndBelowChunks", |
55 |
| - "onCommand:r.runBelowChunks", |
56 |
| - "onCommand:r.runAllChunks", |
57 |
| - "onCommand:r.goToPreviousChunk", |
58 |
| - "onCommand:r.goToNextChunk", |
59 |
| - "onCommand:r.createGitignore", |
60 |
| - "onCommand:r.createLintrConfig", |
61 |
| - "onCommand:r.generateCCppProperties", |
62 |
| - "onCommand:r.runCommandWithSelectionOrWord", |
63 |
| - "onCommand:r.runCommandWithEditorPath", |
64 |
| - "onCommand:r.runCommand", |
65 |
| - "onCommand:r.showHelp", |
66 |
| - "onCommand:r.helpPanel.back", |
67 |
| - "onCommand:r.helpPanel.forward", |
68 |
| - "onCommand:r.helpPanel.openForSelection", |
69 |
| - "onCommand:r.plot.openUrl", |
70 |
| - "onWebviewPanel:rhelp", |
71 |
| - "onTerminalProfile:r.terminal-profile" |
| 34 | + "onWebviewPanel:rhelp" |
72 | 35 | ],
|
73 |
| - "main": "./out/extension", |
| 36 | + "main": "./dist/extension", |
74 | 37 | "contributes": {
|
75 | 38 | "terminal": {
|
76 | 39 | "profiles": [
|
|
1474 | 1437 | "default": [],
|
1475 | 1438 | "markdownDescription": "Additional library paths to launch R background processes (R languageserver, help server, etc.). These paths will be appended to `.libPaths()` on process startup. It could be useful for projects with [renv](https://rstudio.github.io/renv/index.html) enabled."
|
1476 | 1439 | },
|
1477 |
| - "r.useRenvLibPath" : { |
| 1440 | + "r.useRenvLibPath": { |
1478 | 1441 | "type": "boolean",
|
1479 | 1442 | "default": false,
|
1480 | 1443 | "markdownDescription": "Use renv library paths to launch R background processes (R languageserver, help server, etc.)."
|
|
2113 | 2076 | ]
|
2114 | 2077 | },
|
2115 | 2078 | "scripts": {
|
2116 |
| - "vscode:prepublish": "tsc -p . && tsc -p ./html/help && tsc -p ./html/httpgd", |
2117 |
| - "compile": "tsc -p . && tsc -p ./html/help && tsc -p ./html/httpgd", |
2118 |
| - "watch": "tsc -p . --watch", |
| 2079 | + "vscode:prepublish": "tsc -p ./html/help && tsc -p ./html/httpgd && webpack --mode production", |
| 2080 | + "compile": "tsc -p ./html/help && tsc -p ./html/httpgd && webpack --mode none", |
| 2081 | + "watch": "webpack --mode none --watch", |
2119 | 2082 | "watchHelp": "tsc -p ./html/help --watch",
|
2120 | 2083 | "watchHttpgd": "tsc -p ./html/httpgd --watch",
|
2121 | 2084 | "pretest": "tsc -p ./",
|
2122 | 2085 | "test": "node ./out/test/runTest.js",
|
2123 | 2086 | "lint": "eslint src --ext ts"
|
2124 | 2087 | },
|
2125 |
| - "withWebpack": { |
2126 |
| - "scripts": { |
2127 |
| - "vscode:prepublish": "tsc -p ./html/help && tsc -p ./html/httpgd && webpack --mode production", |
2128 |
| - "compile": "tsc -p ./html/help && tsc -p ./html/httpgd && webpack --mode none", |
2129 |
| - "watch": "webpack --mode none --watch", |
2130 |
| - "watchHelp": "tsc -p ./html/help --watch", |
2131 |
| - "watchHttpgd": "tsc -p ./html/httpgd --watch", |
2132 |
| - "pretest": "tsc -p ./", |
2133 |
| - "test": "node ./out/test/runTest.js", |
2134 |
| - "lint": "eslint src --ext ts" |
2135 |
| - }, |
2136 |
| - "main": "./dist/extension" |
2137 |
| - }, |
2138 | 2088 | "devDependencies": {
|
2139 | 2089 | "@types/cheerio": "^0.22.29",
|
2140 | 2090 | "@types/ejs": "^3.0.6",
|
|
2143 | 2093 | "@types/glob": "^8.0.0",
|
2144 | 2094 | "@types/js-yaml": "^4.0.2",
|
2145 | 2095 | "@types/mocha": "^8.2.2",
|
2146 |
| - "@types/node": "^16.11.7", |
| 2096 | + "@types/node": "^18.17.1", |
2147 | 2097 | "@types/node-fetch": "^2.5.10",
|
2148 | 2098 | "@types/sinon": "^10.0.13",
|
2149 |
| - "@types/vscode": "^1.67.0", |
| 2099 | + "@types/vscode": "^1.75.0", |
2150 | 2100 | "@types/winreg": "^1.2.31",
|
2151 | 2101 | "@typescript-eslint/eslint-plugin": "^5.30.0",
|
2152 | 2102 | "@typescript-eslint/parser": "^5.30.0",
|
2153 | 2103 | "@vscode/test-electron": "^2.2.3",
|
| 2104 | + "@types/highlight.js": "^10.1.0", |
2154 | 2105 | "copy-webpack-plugin": "^9.0.0",
|
2155 | 2106 | "devreplay": "^1.9.31",
|
2156 | 2107 | "eslint": "^7.28.0",
|
|
2163 | 2114 | "webpack-cli": "^4.7.2"
|
2164 | 2115 | },
|
2165 | 2116 | "dependencies": {
|
2166 |
| - "ag-grid-community": "^30.2.0", |
2167 |
| - "cheerio": "1.0.0-rc.10", |
| 2117 | + "ag-grid-community": "^31.3.2", |
| 2118 | + "cheerio": "1.0.0-rc.12", |
2168 | 2119 | "crypto": "^1.0.1",
|
2169 | 2120 | "ejs": "^3.1.10",
|
2170 | 2121 | "fs-extra": "^10.0.0",
|
2171 |
| - "highlight.js": "^10.7.3", |
| 2122 | + "highlight.js": "^11.9.0", |
2172 | 2123 | "httpgd": "^0.1.6",
|
2173 |
| - "jquery": "^3.6.0", |
| 2124 | + "jquery": "^3.7.1", |
2174 | 2125 | "jquery.json-viewer": "^1.5.0",
|
2175 | 2126 | "js-yaml": "^4.1.0",
|
2176 | 2127 | "node-fetch": "^2.6.7",
|
|
0 commit comments