diff options
author | RabsRincon <ruben@rinconblanco.es> | 2022-04-26 05:26:48 +0200 |
---|---|---|
committer | RabsRincon <ruben@rinconblanco.es> | 2022-04-26 05:26:48 +0200 |
commit | 40fe769459c4c34c58af530f32fc3a33a7ced2d7 (patch) | |
tree | 9e2560c5aa9e31762d068b29c00a533f633c8d4c /lib/compilers/dotnet.ts | |
parent | fb35d64a92d2f4c2dcf0109ddaf1b999563a0b3c (diff) | |
download | compiler-explorer-40fe769459c4c34c58af530f32fc3a33a7ced2d7.tar.gz compiler-explorer-40fe769459c4c34c58af530f32fc3a33a7ced2d7.zip |
Set comma-dangle to always in server code and es5 in client codegh-2532
Diffstat (limited to 'lib/compilers/dotnet.ts')
-rw-r--r-- | lib/compilers/dotnet.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compilers/dotnet.ts b/lib/compilers/dotnet.ts index cd9ec8e86..53156962b 100644 --- a/lib/compilers/dotnet.ts +++ b/lib/compilers/dotnet.ts @@ -101,7 +101,7 @@ class DotNetCompiler extends BaseCompiler { this.buildConfig, this.targetFramework, this.rID, - 'publish' + 'publish', ); const programDllPath = path.join(programPublishPath, 'CompilerExplorer.dll'); @@ -164,7 +164,7 @@ class DotNetCompiler extends BaseCompiler { programPublishPath, programDllPath, crossgen2Options, - this.getOutputFilename(programDir, this.outputFilebase) + this.getOutputFilename(programDir, this.outputFilebase), ); if (crossgen2Result.code !== 0) { @@ -203,7 +203,7 @@ class DotNetCompiler extends BaseCompiler { await fs.writeFile( outputPath, - result.stdout.map(o => o.text).reduce((a, n) => `${a}\n${n}`) + result.stdout.map(o => o.text).reduce((a, n) => `${a}\n${n}`), ); return result; |