Avoid having diffs in `monaco.d.ts`

pull/2748/head
Alex Dima 5 years ago
parent 0b344d31d0
commit 0180119c69
No known key found for this signature in database
GPG Key ID: 6E58D7B045760DA0

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

Loading…
Cancel
Save