Merge pull request #13473 from overleaf/revert-13439-tw-support-rnw-files

Revert "support for Rnw files"

GitOrigin-RevId: 1116814958cabed4c741bd0d3cce7670a6ca5ed4
This commit is contained in:
Tyna William 2023-06-13 11:45:14 -04:00 committed by Copybot
parent 4100ee81a1
commit ea59a98386
6 changed files with 5 additions and 6 deletions

View file

@ -184,7 +184,7 @@ function _buildLatexCommand(mainFile, opts = {}) {
// We want to run latexmk on the tex file which we will automatically // We want to run latexmk on the tex file which we will automatically
// generate from the Rtex/Rmd/md file. // generate from the Rtex/Rmd/md file.
mainFile = mainFile.replace(/\.(Rtex|md|Rmd|Rnw)$/, '.tex') mainFile = mainFile.replace(/\.(Rtex|md|Rmd)$/, '.tex')
command.push(Path.join('$COMPILE_DIR', mainFile)) command.push(Path.join('$COMPILE_DIR', mainFile))
return command return command

View file

@ -178,7 +178,6 @@ module.exports = Client = {
'ist', 'ist',
'md', 'md',
'Rmd', 'Rmd',
'Rnw',
].indexOf(extension) > -1 ].indexOf(extension) > -1
) { ) {
resources.push({ resources.push({

View file

@ -72,7 +72,7 @@ module.exports = ProjectRootDocManager = {
if (callback == null) { if (callback == null) {
callback = function () {} callback = function () {}
} }
const filePathsPromise = globby(['**/*.{tex,Rtex,Rnw}'], { const filePathsPromise = globby(['**/*.{tex,Rtex}'], {
cwd: directoryPath, cwd: directoryPath,
followSymlinkedDirectories: false, followSymlinkedDirectories: false,
onlyFiles: true, onlyFiles: true,

View file

@ -674,7 +674,7 @@ module.exports = {
process.env.FILE_IGNORE_PATTERN || process.env.FILE_IGNORE_PATTERN ||
'**/{{__MACOSX,.git,.texpadtmp,.R}{,/**},.!(latexmkrc),*.{dvi,aux,log,toc,out,pdfsync,synctex,synctex(busy),fdb_latexmk,fls,nlo,ind,glo,gls,glg,bbl,blg,doc,docx,gz,swp}}', '**/{{__MACOSX,.git,.texpadtmp,.R}{,/**},.!(latexmkrc),*.{dvi,aux,log,toc,out,pdfsync,synctex,synctex(busy),fdb_latexmk,fls,nlo,ind,glo,gls,glg,bbl,blg,doc,docx,gz,swp}}',
validRootDocExtensions: ['tex', 'Rtex', 'ltx', 'Rnw'], validRootDocExtensions: ['tex', 'Rtex', 'ltx'],
emailConfirmationDisabled: emailConfirmationDisabled:
process.env.EMAIL_CONFIRMATION_DISABLED === 'true' || false, process.env.EMAIL_CONFIRMATION_DISABLED === 'true' || false,

View file

@ -1,5 +1,5 @@
window.i18n = { currentLangCode: 'en' } window.i18n = { currentLangCode: 'en' }
window.ExposedSettings = { window.ExposedSettings = {
appName: 'Overleaf', appName: 'Overleaf',
validRootDocExtensions: ['tex', 'Rtex', 'ltx', 'Rnw'], validRootDocExtensions: ['tex', 'Rtex', 'ltx'],
} as typeof window.ExposedSettings } as typeof window.ExposedSettings

View file

@ -184,7 +184,7 @@ const initialize = () => {
'gv', 'gv',
'mf', 'mf',
], ],
validRootDocExtensions: ['tex', 'Rtex', 'ltx', 'Rnw'], validRootDocExtensions: ['tex', 'Rtex', 'ltx'],
} }
window.project_id = project._id window.project_id = project._id