Skip to content

Commit

Permalink
Fixes #871
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdima committed May 15, 2018
1 parent 1b82be2 commit 5142ee6
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 39 deletions.
77 changes: 42 additions & 35 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,11 @@ function addPluginContribs(type) {

function ESM_release() {
return es.merge(
gulp.src('node_modules/monaco-editor-core/esm/**/*')
gulp.src([
'node_modules/monaco-editor-core/esm/**/*',
// we will create our own editor.api.d.ts which also contains the plugins API
'!node_modules/monaco-editor-core/esm/vs/editor/editor.api.d.ts'
])
.pipe(ESM_addImportSuffix())
.pipe(ESM_addPluginContribs('release/esm'))
.pipe(gulp.dest('release/esm')),
Expand Down Expand Up @@ -414,48 +418,51 @@ function addPluginDTS() {

data.contents = new Buffer(contents);

{
let lines = contents.split('\n');
let killNextCloseCurlyBrace = false;
for (let i = 0; i < lines.length; i++) {
let line = lines[i];

if (killNextCloseCurlyBrace) {
if ('}' === line) {
lines[i] = '';
killNextCloseCurlyBrace = false;
continue;
}
this.emit('data', new File({
path: path.join(path.dirname(data.path), 'esm/vs/editor/editor.api.d.ts'),
base: data.base,
contents: new Buffer(toExternalDTS(contents))
}));

if (line.indexOf(' ') === 0) {
lines[i] = line.substr(4);
}
fs.writeFileSync('website/playground/monaco.d.ts.txt', contents);
fs.writeFileSync('monaco.d.ts', contents);
this.emit('data', data);
});
}

continue;
}
function toExternalDTS(contents) {
let lines = contents.split('\n');
let killNextCloseCurlyBrace = false;
for (let i = 0; i < lines.length; i++) {
let line = lines[i];

if ('declare namespace monaco {' === line) {
lines[i] = '';
killNextCloseCurlyBrace = true;
continue;
}
if (killNextCloseCurlyBrace) {
if ('}' === line) {
lines[i] = '';
killNextCloseCurlyBrace = false;
continue;
}

if (line.indexOf('declare namespace monaco.') === 0) {
lines[i] = line.replace('declare namespace monaco.', 'export namespace ');
}
if (line.indexOf(' ') === 0) {
lines[i] = line.substr(4);
} else if (line.charAt(0) === '\t') {
lines[i] = line.substr(1);
}

this.emit('data', new File({
path: path.join(path.dirname(data.path), 'esm/vs/editor/editor.api.d.ts'),
base: data.base,
contents: new Buffer(lines.join('\n'))
}));
continue;
}

fs.writeFileSync('website/playground/monaco.d.ts.txt', contents);
fs.writeFileSync('monaco.d.ts', contents);
this.emit('data', data);
});
if ('declare namespace monaco {' === line) {
lines[i] = '';
killNextCloseCurlyBrace = true;
continue;
}

if (line.indexOf('declare namespace monaco.') === 0) {
lines[i] = line.replace('declare namespace monaco.', 'export namespace ');
}
}
return lines.join('\n');
}

/**
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"gulp-typedoc": "^2.0.0",
"http-server": "^0.11.1",
"monaco-css": "2.1.1",
"monaco-editor-core": "0.13.1",
"monaco-editor-core": "0.13.2",
"monaco-html": "2.1.1",
"monaco-json": "2.1.1",
"monaco-languages": "1.3.1",
Expand Down

0 comments on commit 5142ee6

Please sign in to comment.