Kaynağa Gözat

Avoid having diffs in `monaco.d.ts`

Alex Dima 4 yıl önce
ebeveyn
işleme
0180119c69
1 değiştirilmiş dosya ile 2 ekleme ve 3 silme
  1. 2 3
      scripts/dts.js

+ 2 - 3
scripts/dts.js

@@ -20,8 +20,7 @@ let result = [
 	` *  Licensed under the MIT License. See License.txt in the project root for license information.`,
 	` *--------------------------------------------------------------------------------------------*/`,
 	``,
-	`declare namespace monaco.languages.json {`,
-	``
+	`declare namespace monaco.languages.json {`
 ];
 for (let line of lines) {
 	if (/^import/.test(line)) {
@@ -31,8 +30,8 @@ for (let line of lines) {
 	line = line.replace(/export declare/g, 'export');
 	if (line.length > 0) {
 		line = `\t${line}`;
+		result.push(line);
 	}
-	result.push(line);
 }
 result.push(`}`);
 result.push(``);