Skip to content

Commit 57f34ad

Browse files
committed
monaco-editor-core@0.16.0
1 parent afded16 commit 57f34ad

5 files changed

Lines changed: 56 additions & 21 deletions

File tree

build/gulpfile.editor.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,14 @@ const finalEditorResourcesTask = task.define('final-editor-resources', () => {
234234
}))
235235
.pipe(gulp.dest('out-monaco-editor-core')),
236236

237+
// version.txt
238+
gulp.src('build/monaco/version.txt')
239+
.pipe(es.through(function (data) {
240+
data.contents = Buffer.from(`monaco-editor-core: https://github.com/Microsoft/vscode/tree/${sha1}`);
241+
this.emit('data', data);
242+
}))
243+
.pipe(gulp.dest('out-monaco-editor-core')),
244+
237245
// README.md
238246
gulp.src('build/monaco/README-npm.md')
239247
.pipe(es.through(function (data) {

build/monaco/ThirdPartyNotices.txt

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,31 @@ herein, whether by implication, estoppel or otherwise.
77

88

99

10+
%% nodejs path library (https://github.com/nodejs/node/tree/43dd49c9782848c25e5b03448c8a0f923f13c158)
11+
=========================================
12+
Copyright Joyent, Inc. and other Node contributors.
13+
14+
Permission is hereby granted, free of charge, to any person obtaining a
15+
copy of this software and associated documentation files (the
16+
"Software"), to deal in the Software without restriction, including
17+
without limitation the rights to use, copy, modify, merge, publish,
18+
distribute, sublicense, and/or sell copies of the Software, and to permit
19+
persons to whom the Software is furnished to do so, subject to the
20+
following conditions:
21+
22+
The above copyright notice and this permission notice shall be included
23+
in all copies or substantial portions of the Software.
24+
25+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
26+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
28+
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
29+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
30+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
31+
USE OR OTHER DEALINGS IN THE SOFTWARE.
32+
=========================================
33+
END OF nodejs path library NOTICES AND INFORMATION
34+
1035

1136
%% promise-polyfill version 8.1.0 (https://github.com/taylorhakes/promise-polyfill)
1237
=========================================

build/monaco/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "monaco-editor-core",
33
"private": true,
4-
"version": "0.14.3",
4+
"version": "0.16.0",
55
"description": "A browser based code editor",
66
"author": "Microsoft Corporation",
77
"license": "MIT",

build/monaco/version.txt

Whitespace-only changes.

src/vs/base/common/path.ts

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,28 @@
66
// NOTE: VSCode's copy of nodejs path library to be usable in common (non-node) namespace
77
// Copied from: https://github.com/nodejs/node/tree/43dd49c9782848c25e5b03448c8a0f923f13c158
88

9-
// Copyright Joyent, Inc. and other Node contributors.
10-
//
11-
// Permission is hereby granted, free of charge, to any person obtaining a
12-
// copy of this software and associated documentation files (the
13-
// "Software"), to deal in the Software without restriction, including
14-
// without limitation the rights to use, copy, modify, merge, publish,
15-
// distribute, sublicense, and/or sell copies of the Software, and to permit
16-
// persons to whom the Software is furnished to do so, subject to the
17-
// following conditions:
18-
//
19-
// The above copyright notice and this permission notice shall be included
20-
// in all copies or substantial portions of the Software.
21-
//
22-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
23-
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24-
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
25-
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
26-
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
27-
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
28-
// USE OR OTHER DEALINGS IN THE SOFTWARE.
9+
/**
10+
* Copyright Joyent, Inc. and other Node contributors.
11+
*
12+
* Permission is hereby granted, free of charge, to any person obtaining a
13+
* copy of this software and associated documentation files (the
14+
* "Software"), to deal in the Software without restriction, including
15+
* without limitation the rights to use, copy, modify, merge, publish,
16+
* distribute, sublicense, and/or sell copies of the Software, and to permit
17+
* persons to whom the Software is furnished to do so, subject to the
18+
* following conditions:
19+
*
20+
* The above copyright notice and this permission notice shall be included
21+
* in all copies or substantial portions of the Software.
22+
*
23+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24+
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
26+
* NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
27+
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
28+
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
29+
* USE OR OTHER DEALINGS IN THE SOFTWARE.
30+
*/
2931

3032
import { isWindows } from 'vs/base/common/platform';
3133

0 commit comments

Comments
 (0)