File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1010 "command" : " vsce" ,
1111 "args" : [
1212 " package" ,
13+ " --yarn" ,
1314 " -o" ,
1415 " ${workspaceFolderBasename}.vsix"
1516 ]
Original file line number Diff line number Diff line change @@ -47,13 +47,14 @@ export class HelpProvider {
4747
4848 // starts the background help server and waits forever to keep the R process running
4949 const scriptPath = extensionContext . asAbsolutePath ( 'R/help/helpServer.R' ) ;
50- // const cmd = `${this.rPath} --silent --slave --no-save --no-restore -f "${scriptPath}"`;
5150 const args = [
5251 '--silent' ,
5352 '--slave' ,
5453 '--no-save' ,
5554 '--no-restore' ,
56- '-f' ,
55+ '-e' ,
56+ 'base::source(base::commandArgs(TRUE))' ,
57+ '--args' ,
5758 scriptPath
5859 ] ;
5960 const cpOptions = {
Original file line number Diff line number Diff line change @@ -85,7 +85,9 @@ export class LanguageService implements Disposable {
8585 '--slave' ,
8686 '--no-save' ,
8787 '--no-restore' ,
88- '-f' ,
88+ '-e' ,
89+ 'base::source(base::commandArgs(TRUE))' ,
90+ '--args' ,
8991 rScriptPath
9092 ) ;
9193
Original file line number Diff line number Diff line change 22{
33 "compilerOptions" : {
44 "module" : " commonjs" ,
5- "target" : " es2018 " ,
5+ "target" : " ES2021 " ,
66 "outDir" : " out" ,
77 "lib" : [
8- " es2018 "
8+ " ES2021 "
99 ],
1010 "sourceMap" : true ,
1111 // "strictNullChecks": true,
You can’t perform that action at this time.
0 commit comments