Skip to content

Commit 80a64db

Browse files
committed
Fix windows
1 parent fd39c4a commit 80a64db

35 files changed

+8303
-8295
lines changed

standalone-packages/monaco-editor-core/dev/bundleInfo.json

Lines changed: 4129 additions & 4129 deletions
Large diffs are not rendered by default.

standalone-packages/monaco-editor-core/dev/vs/base/worker/workerMain.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

standalone-packages/monaco-editor-core/dev/vs/editor/codesandbox.editor.main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!-----------------------------------------------------------
22
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Version: 0.14.3(c14426cc27edcd4b0ed43c2d569a0c9f2b64c6b2)
3+
* Version: 0.14.3(acd2c388963f44d9dfc7a367b2a772b993a888b9)
44
* Released under the MIT license
55
* https://github.com/Microsoft/vscode/blob/master/LICENSE.txt
66
*-----------------------------------------------------------*/

standalone-packages/monaco-editor-core/dev/vs/editor/codesandbox.editor.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!-----------------------------------------------------------
22
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Version: 0.14.3(c14426cc27edcd4b0ed43c2d569a0c9f2b64c6b2)
3+
* Version: 0.14.3(acd2c388963f44d9dfc7a367b2a772b993a888b9)
44
* Released under the MIT license
55
* https://github.com/Microsoft/vscode/blob/master/LICENSE.txt
66
*-----------------------------------------------------------*/

standalone-packages/monaco-editor-core/dev/vs/editor/editor.main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!-----------------------------------------------------------
22
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Version: 0.14.3(c14426cc27edcd4b0ed43c2d569a0c9f2b64c6b2)
3+
* Version: 0.14.3(acd2c388963f44d9dfc7a367b2a772b993a888b9)
44
* Released under the MIT license
55
* https://github.com/Microsoft/vscode/blob/master/LICENSE.txt
66
*-----------------------------------------------------------*/

standalone-packages/monaco-editor-core/dev/vs/editor/editor.main.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!-----------------------------------------------------------
22
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Version: 0.14.3(c14426cc27edcd4b0ed43c2d569a0c9f2b64c6b2)
3+
* Version: 0.14.3(acd2c388963f44d9dfc7a367b2a772b993a888b9)
44
* Released under the MIT license
55
* https://github.com/Microsoft/vscode/blob/master/LICENSE.txt
66
*-----------------------------------------------------------*/
@@ -6379,7 +6379,9 @@ define(__m[44/*vs/base/common/paths*/], __M([1/*require*/,0/*exports*/,11/*vs/ba
63796379
/**
63806380
* The native path separator depending on the OS.
63816381
*/
6382-
exports.nativeSep = platform_1.isWindows ? '\\' : '/';
6382+
// CODESANDBOX CHANGE, FIX WINDOWS PATHS
6383+
// export const nativeSep = isWindows ? '\\' : '/';
6384+
exports.nativeSep = '/';
63836385
/**
63846386
* @param path the path to get the dirname from
63856387
* @param separator the separator to use

standalone-packages/monaco-editor-core/dev/vs/editor/editor.main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

standalone-packages/monaco-editor-core/dev/vs/loader.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

standalone-packages/monaco-editor-core/dev/vs/loader.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

standalone-packages/monaco-editor-core/esm/vs/base/common/paths.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ export var sep = '/';
1212
/**
1313
* The native path separator depending on the OS.
1414
*/
15-
export var nativeSep = isWindows ? '\\' : '/';
15+
// CODESANDBOX CHANGE, FIX WINDOWS PATHS
16+
// export const nativeSep = isWindows ? '\\' : '/';
17+
export var nativeSep = '/';
1618
/**
1719
* @param path the path to get the dirname from
1820
* @param separator the separator to use

0 commit comments

Comments
 (0)