diff --git a/1261.js b/1261.js index e903ae76..6412eb4e 100644 --- a/1261.js +++ b/1261.js @@ -1,2 +1,2 @@ -"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[1261],{1261:(t,n,e)=>{e.r(n),e.d(n,{default:()=>r});const r='function validate(model) {\n\tconst markers = [];\n\t// lines start at 1\n\tfor (let i = 1; i < model.getLineCount() + 1; i++) {\n\t\tconst range = {\n\t\t\tstartLineNumber: i,\n\t\t\tstartColumn: 1,\n\t\t\tendLineNumber: i,\n\t\t\tendColumn: model.getLineLength(i) + 1,\n\t\t};\n\t\tconst content = model.getValueInRange(range).trim();\n\t\tconst number = Number(content);\n\t\tif (Number.isNaN(number)) {\n\t\t\tmarkers.push({\n\t\t\t\tmessage: "not a number",\n\t\t\t\tseverity: monaco.MarkerSeverity.Error,\n\t\t\t\tstartLineNumber: range.startLineNumber,\n\t\t\t\tstartColumn: range.startColumn,\n\t\t\t\tendLineNumber: range.endLineNumber,\n\t\t\t\tendColumn: range.endColumn,\n\t\t\t});\n\t\t} else if (!Number.isInteger(number)) {\n\t\t\tmarkers.push({\n\t\t\t\tmessage: "not an integer",\n\t\t\t\tseverity: monaco.MarkerSeverity.Warning,\n\t\t\t\tstartLineNumber: range.startLineNumber,\n\t\t\t\tstartColumn: range.startColumn,\n\t\t\t\tendLineNumber: range.endLineNumber,\n\t\t\t\tendColumn: range.endColumn,\n\t\t\t});\n\t\t}\n\t}\n\tmonaco.editor.setModelMarkers(model, "owner", markers);\n}\n\nconst value = `12345\nabcd\n234.56\n12345\nabcd\n234.56`;\nconst uri = monaco.Uri.parse("inmemory://test");\nconst model = monaco.editor.createModel(value, "demoLanguage", uri);\neditor = monaco.editor.create(document.getElementById("container"), { model });\nvalidate(model);\nmodel.onDidChangeContent(() => {\n\tvalidate(model);\n});\n'}}]); +"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[1261],{1261:(t,n,e)=>{e.r(n),e.d(n,{default:()=>r});const r='function validate(model) {\n\tconst markers = [];\n\t// lines start at 1\n\tfor (let i = 1; i < model.getLineCount() + 1; i++) {\n\t\tconst range = {\n\t\t\tstartLineNumber: i,\n\t\t\tstartColumn: 1,\n\t\t\tendLineNumber: i,\n\t\t\tendColumn: model.getLineLength(i) + 1,\n\t\t};\n\t\tconst content = model.getValueInRange(range).trim();\n\t\tconst number = Number(content);\n\t\tif (Number.isNaN(number)) {\n\t\t\tmarkers.push({\n\t\t\t\tmessage: "not a number",\n\t\t\t\tseverity: monaco.MarkerSeverity.Error,\n\t\t\t\tstartLineNumber: range.startLineNumber,\n\t\t\t\tstartColumn: range.startColumn,\n\t\t\t\tendLineNumber: range.endLineNumber,\n\t\t\t\tendColumn: range.endColumn,\n\t\t\t});\n\t\t} else if (!Number.isInteger(number)) {\n\t\t\tmarkers.push({\n\t\t\t\tmessage: "not an integer",\n\t\t\t\tseverity: monaco.MarkerSeverity.Warning,\n\t\t\t\tstartLineNumber: range.startLineNumber,\n\t\t\t\tstartColumn: range.startColumn,\n\t\t\t\tendLineNumber: range.endLineNumber,\n\t\t\t\tendColumn: range.endColumn,\n\t\t\t});\n\t\t}\n\t}\n\tmonaco.editor.setModelMarkers(model, "owner", markers);\n}\n\nconst value = `12345\nabcd\n234.56\n12345\nabcd\n234.56`;\nconst uri = monaco.Uri.parse("inmemory://test");\nconst model = monaco.editor.createModel(value, "demoLanguage", uri);\nconst editor = monaco.editor.create(document.getElementById("container"), {\n\tmodel,\n});\nvalidate(model);\nmodel.onDidChangeContent(() => {\n\tvalidate(model);\n});\n'}}]); //# sourceMappingURL=1261.js.map \ No newline at end of file diff --git a/1261.js.map b/1261.js.map index ba5734ab..93a0a55a 100644 --- a/1261.js.map +++ b/1261.js.map @@ -1 +1 @@ -{"version":3,"file":"1261.js","mappings":"8IAAA,86C","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/extending-language-services/model-markers-example/sample.js"],"sourcesContent":["export default \"function validate(model) {\\n\\tconst markers = [];\\n\\t// lines start at 1\\n\\tfor (let i = 1; i < model.getLineCount() + 1; i++) {\\n\\t\\tconst range = {\\n\\t\\t\\tstartLineNumber: i,\\n\\t\\t\\tstartColumn: 1,\\n\\t\\t\\tendLineNumber: i,\\n\\t\\t\\tendColumn: model.getLineLength(i) + 1,\\n\\t\\t};\\n\\t\\tconst content = model.getValueInRange(range).trim();\\n\\t\\tconst number = Number(content);\\n\\t\\tif (Number.isNaN(number)) {\\n\\t\\t\\tmarkers.push({\\n\\t\\t\\t\\tmessage: \\\"not a number\\\",\\n\\t\\t\\t\\tseverity: monaco.MarkerSeverity.Error,\\n\\t\\t\\t\\tstartLineNumber: range.startLineNumber,\\n\\t\\t\\t\\tstartColumn: range.startColumn,\\n\\t\\t\\t\\tendLineNumber: range.endLineNumber,\\n\\t\\t\\t\\tendColumn: range.endColumn,\\n\\t\\t\\t});\\n\\t\\t} else if (!Number.isInteger(number)) {\\n\\t\\t\\tmarkers.push({\\n\\t\\t\\t\\tmessage: \\\"not an integer\\\",\\n\\t\\t\\t\\tseverity: monaco.MarkerSeverity.Warning,\\n\\t\\t\\t\\tstartLineNumber: range.startLineNumber,\\n\\t\\t\\t\\tstartColumn: range.startColumn,\\n\\t\\t\\t\\tendLineNumber: range.endLineNumber,\\n\\t\\t\\t\\tendColumn: range.endColumn,\\n\\t\\t\\t});\\n\\t\\t}\\n\\t}\\n\\tmonaco.editor.setModelMarkers(model, \\\"owner\\\", markers);\\n}\\n\\nconst value = `12345\\nabcd\\n234.56\\n12345\\nabcd\\n234.56`;\\nconst uri = monaco.Uri.parse(\\\"inmemory://test\\\");\\nconst model = monaco.editor.createModel(value, \\\"demoLanguage\\\", uri);\\neditor = monaco.editor.create(document.getElementById(\\\"container\\\"), { model });\\nvalidate(model);\\nmodel.onDidChangeContent(() => {\\n\\tvalidate(model);\\n});\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"1261.js","mappings":"8IAAA,y7C","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/extending-language-services/model-markers-example/sample.js"],"sourcesContent":["export default \"function validate(model) {\\n\\tconst markers = [];\\n\\t// lines start at 1\\n\\tfor (let i = 1; i < model.getLineCount() + 1; i++) {\\n\\t\\tconst range = {\\n\\t\\t\\tstartLineNumber: i,\\n\\t\\t\\tstartColumn: 1,\\n\\t\\t\\tendLineNumber: i,\\n\\t\\t\\tendColumn: model.getLineLength(i) + 1,\\n\\t\\t};\\n\\t\\tconst content = model.getValueInRange(range).trim();\\n\\t\\tconst number = Number(content);\\n\\t\\tif (Number.isNaN(number)) {\\n\\t\\t\\tmarkers.push({\\n\\t\\t\\t\\tmessage: \\\"not a number\\\",\\n\\t\\t\\t\\tseverity: monaco.MarkerSeverity.Error,\\n\\t\\t\\t\\tstartLineNumber: range.startLineNumber,\\n\\t\\t\\t\\tstartColumn: range.startColumn,\\n\\t\\t\\t\\tendLineNumber: range.endLineNumber,\\n\\t\\t\\t\\tendColumn: range.endColumn,\\n\\t\\t\\t});\\n\\t\\t} else if (!Number.isInteger(number)) {\\n\\t\\t\\tmarkers.push({\\n\\t\\t\\t\\tmessage: \\\"not an integer\\\",\\n\\t\\t\\t\\tseverity: monaco.MarkerSeverity.Warning,\\n\\t\\t\\t\\tstartLineNumber: range.startLineNumber,\\n\\t\\t\\t\\tstartColumn: range.startColumn,\\n\\t\\t\\t\\tendLineNumber: range.endLineNumber,\\n\\t\\t\\t\\tendColumn: range.endColumn,\\n\\t\\t\\t});\\n\\t\\t}\\n\\t}\\n\\tmonaco.editor.setModelMarkers(model, \\\"owner\\\", markers);\\n}\\n\\nconst value = `12345\\nabcd\\n234.56\\n12345\\nabcd\\n234.56`;\\nconst uri = monaco.Uri.parse(\\\"inmemory://test\\\");\\nconst model = monaco.editor.createModel(value, \\\"demoLanguage\\\", uri);\\nconst editor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tmodel,\\n});\\nvalidate(model);\\nmodel.onDidChangeContent(() => {\\n\\tvalidate(model);\\n});\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/out/release/dev/vs/basic-languages/abap/abap.js.LICENSE.txt b/out/release/dev/vs/basic-languages/abap/abap.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/abap/abap.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/abap/abap.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/apex/apex.js.LICENSE.txt b/out/release/dev/vs/basic-languages/apex/apex.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/apex/apex.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/apex/apex.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/azcli/azcli.js.LICENSE.txt b/out/release/dev/vs/basic-languages/azcli/azcli.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/azcli/azcli.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/azcli/azcli.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/bat/bat.js.LICENSE.txt b/out/release/dev/vs/basic-languages/bat/bat.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/bat/bat.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/bat/bat.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/bicep/bicep.js.LICENSE.txt b/out/release/dev/vs/basic-languages/bicep/bicep.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/bicep/bicep.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/bicep/bicep.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt b/out/release/dev/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/clojure/clojure.js.LICENSE.txt b/out/release/dev/vs/basic-languages/clojure/clojure.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/clojure/clojure.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/clojure/clojure.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/coffee/coffee.js.LICENSE.txt b/out/release/dev/vs/basic-languages/coffee/coffee.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/coffee/coffee.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/coffee/coffee.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/cpp/cpp.js.LICENSE.txt b/out/release/dev/vs/basic-languages/cpp/cpp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/cpp/cpp.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/cpp/cpp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/csharp/csharp.js.LICENSE.txt b/out/release/dev/vs/basic-languages/csharp/csharp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/csharp/csharp.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/csharp/csharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/csp/csp.js.LICENSE.txt b/out/release/dev/vs/basic-languages/csp/csp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/csp/csp.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/csp/csp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/css/css.js.LICENSE.txt b/out/release/dev/vs/basic-languages/css/css.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/css/css.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/css/css.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/cypher/cypher.js.LICENSE.txt b/out/release/dev/vs/basic-languages/cypher/cypher.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/cypher/cypher.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/cypher/cypher.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/dart/dart.js.LICENSE.txt b/out/release/dev/vs/basic-languages/dart/dart.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/dart/dart.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/dart/dart.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt b/out/release/dev/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/ecl/ecl.js.LICENSE.txt b/out/release/dev/vs/basic-languages/ecl/ecl.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/ecl/ecl.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/ecl/ecl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/elixir/elixir.js.LICENSE.txt b/out/release/dev/vs/basic-languages/elixir/elixir.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/elixir/elixir.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/elixir/elixir.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/flow9/flow9.js.LICENSE.txt b/out/release/dev/vs/basic-languages/flow9/flow9.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/flow9/flow9.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/flow9/flow9.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt b/out/release/dev/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt b/out/release/dev/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/go/go.js.LICENSE.txt b/out/release/dev/vs/basic-languages/go/go.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/go/go.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/go/go.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/graphql/graphql.js.LICENSE.txt b/out/release/dev/vs/basic-languages/graphql/graphql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/graphql/graphql.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/graphql/graphql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt b/out/release/dev/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/hcl/hcl.js.LICENSE.txt b/out/release/dev/vs/basic-languages/hcl/hcl.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/hcl/hcl.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/hcl/hcl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/html/html.js.LICENSE.txt b/out/release/dev/vs/basic-languages/html/html.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/html/html.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/html/html.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/ini/ini.js.LICENSE.txt b/out/release/dev/vs/basic-languages/ini/ini.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/ini/ini.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/ini/ini.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/java/java.js.LICENSE.txt b/out/release/dev/vs/basic-languages/java/java.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/java/java.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/java/java.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/javascript/javascript.js.LICENSE.txt b/out/release/dev/vs/basic-languages/javascript/javascript.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/javascript/javascript.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/javascript/javascript.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/julia/julia.js.LICENSE.txt b/out/release/dev/vs/basic-languages/julia/julia.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/julia/julia.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/julia/julia.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt b/out/release/dev/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/less/less.js.LICENSE.txt b/out/release/dev/vs/basic-languages/less/less.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/less/less.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/less/less.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/lexon/lexon.js.LICENSE.txt b/out/release/dev/vs/basic-languages/lexon/lexon.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/lexon/lexon.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/lexon/lexon.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/liquid/liquid.js.LICENSE.txt b/out/release/dev/vs/basic-languages/liquid/liquid.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/liquid/liquid.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/liquid/liquid.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/lua/lua.js.LICENSE.txt b/out/release/dev/vs/basic-languages/lua/lua.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/lua/lua.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/lua/lua.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/m3/m3.js.LICENSE.txt b/out/release/dev/vs/basic-languages/m3/m3.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/m3/m3.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/m3/m3.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/markdown/markdown.js.LICENSE.txt b/out/release/dev/vs/basic-languages/markdown/markdown.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/markdown/markdown.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/markdown/markdown.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/mips/mips.js.LICENSE.txt b/out/release/dev/vs/basic-languages/mips/mips.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/mips/mips.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/mips/mips.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/monaco.contribution.js.LICENSE.txt b/out/release/dev/vs/basic-languages/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/monaco.contribution.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/msdax/msdax.js.LICENSE.txt b/out/release/dev/vs/basic-languages/msdax/msdax.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/msdax/msdax.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/msdax/msdax.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/mysql/mysql.js.LICENSE.txt b/out/release/dev/vs/basic-languages/mysql/mysql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/mysql/mysql.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/mysql/mysql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt b/out/release/dev/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/pascal/pascal.js.LICENSE.txt b/out/release/dev/vs/basic-languages/pascal/pascal.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/pascal/pascal.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/pascal/pascal.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt b/out/release/dev/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/perl/perl.js.LICENSE.txt b/out/release/dev/vs/basic-languages/perl/perl.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/perl/perl.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/perl/perl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt b/out/release/dev/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/php/php.js.LICENSE.txt b/out/release/dev/vs/basic-languages/php/php.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/php/php.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/php/php.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/pla/pla.js.LICENSE.txt b/out/release/dev/vs/basic-languages/pla/pla.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/pla/pla.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/pla/pla.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/postiats/postiats.js.LICENSE.txt b/out/release/dev/vs/basic-languages/postiats/postiats.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/postiats/postiats.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/postiats/postiats.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt b/out/release/dev/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/powershell/powershell.js.LICENSE.txt b/out/release/dev/vs/basic-languages/powershell/powershell.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/powershell/powershell.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/powershell/powershell.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt b/out/release/dev/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/pug/pug.js.LICENSE.txt b/out/release/dev/vs/basic-languages/pug/pug.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/pug/pug.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/pug/pug.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/python/python.js.LICENSE.txt b/out/release/dev/vs/basic-languages/python/python.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/python/python.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/python/python.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt b/out/release/dev/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/r/r.js.LICENSE.txt b/out/release/dev/vs/basic-languages/r/r.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/r/r.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/r/r.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/razor/razor.js.LICENSE.txt b/out/release/dev/vs/basic-languages/razor/razor.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/razor/razor.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/razor/razor.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/redis/redis.js.LICENSE.txt b/out/release/dev/vs/basic-languages/redis/redis.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/redis/redis.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/redis/redis.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/redshift/redshift.js.LICENSE.txt b/out/release/dev/vs/basic-languages/redshift/redshift.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/redshift/redshift.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/redshift/redshift.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt b/out/release/dev/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/ruby/ruby.js.LICENSE.txt b/out/release/dev/vs/basic-languages/ruby/ruby.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/ruby/ruby.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/ruby/ruby.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/rust/rust.js.LICENSE.txt b/out/release/dev/vs/basic-languages/rust/rust.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/rust/rust.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/rust/rust.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/sb/sb.js.LICENSE.txt b/out/release/dev/vs/basic-languages/sb/sb.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/sb/sb.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/sb/sb.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/scala/scala.js.LICENSE.txt b/out/release/dev/vs/basic-languages/scala/scala.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/scala/scala.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/scala/scala.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/scheme/scheme.js.LICENSE.txt b/out/release/dev/vs/basic-languages/scheme/scheme.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/scheme/scheme.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/scheme/scheme.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/scss/scss.js.LICENSE.txt b/out/release/dev/vs/basic-languages/scss/scss.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/scss/scss.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/scss/scss.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/shell/shell.js.LICENSE.txt b/out/release/dev/vs/basic-languages/shell/shell.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/shell/shell.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/shell/shell.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/solidity/solidity.js.LICENSE.txt b/out/release/dev/vs/basic-languages/solidity/solidity.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/solidity/solidity.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/solidity/solidity.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/sophia/sophia.js.LICENSE.txt b/out/release/dev/vs/basic-languages/sophia/sophia.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/sophia/sophia.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/sophia/sophia.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/sparql/sparql.js.LICENSE.txt b/out/release/dev/vs/basic-languages/sparql/sparql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/sparql/sparql.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/sparql/sparql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/sql/sql.js.LICENSE.txt b/out/release/dev/vs/basic-languages/sql/sql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/sql/sql.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/sql/sql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/st/st.js.LICENSE.txt b/out/release/dev/vs/basic-languages/st/st.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/st/st.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/st/st.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/swift/swift.js.LICENSE.txt b/out/release/dev/vs/basic-languages/swift/swift.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/swift/swift.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/swift/swift.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt b/out/release/dev/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/tcl/tcl.js.LICENSE.txt b/out/release/dev/vs/basic-languages/tcl/tcl.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/tcl/tcl.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/tcl/tcl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/twig/twig.js.LICENSE.txt b/out/release/dev/vs/basic-languages/twig/twig.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/twig/twig.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/twig/twig.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/typescript/typescript.js.LICENSE.txt b/out/release/dev/vs/basic-languages/typescript/typescript.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/typescript/typescript.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/typescript/typescript.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/vb/vb.js.LICENSE.txt b/out/release/dev/vs/basic-languages/vb/vb.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/vb/vb.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/vb/vb.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/xml/xml.js.LICENSE.txt b/out/release/dev/vs/basic-languages/xml/xml.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/xml/xml.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/xml/xml.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/basic-languages/yaml/yaml.js.LICENSE.txt b/out/release/dev/vs/basic-languages/yaml/yaml.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/basic-languages/yaml/yaml.js.LICENSE.txt +++ b/out/release/dev/vs/basic-languages/yaml/yaml.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/language/css/cssMode.js.LICENSE.txt b/out/release/dev/vs/language/css/cssMode.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/language/css/cssMode.js.LICENSE.txt +++ b/out/release/dev/vs/language/css/cssMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/language/css/cssWorker.js.LICENSE.txt b/out/release/dev/vs/language/css/cssWorker.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/language/css/cssWorker.js.LICENSE.txt +++ b/out/release/dev/vs/language/css/cssWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/language/css/monaco.contribution.js.LICENSE.txt b/out/release/dev/vs/language/css/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/language/css/monaco.contribution.js.LICENSE.txt +++ b/out/release/dev/vs/language/css/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/language/html/htmlMode.js.LICENSE.txt b/out/release/dev/vs/language/html/htmlMode.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/language/html/htmlMode.js.LICENSE.txt +++ b/out/release/dev/vs/language/html/htmlMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/language/html/htmlWorker.js.LICENSE.txt b/out/release/dev/vs/language/html/htmlWorker.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/language/html/htmlWorker.js.LICENSE.txt +++ b/out/release/dev/vs/language/html/htmlWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/language/html/monaco.contribution.js.LICENSE.txt b/out/release/dev/vs/language/html/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/language/html/monaco.contribution.js.LICENSE.txt +++ b/out/release/dev/vs/language/html/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/language/json/jsonMode.js.LICENSE.txt b/out/release/dev/vs/language/json/jsonMode.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/language/json/jsonMode.js.LICENSE.txt +++ b/out/release/dev/vs/language/json/jsonMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/language/json/jsonWorker.js.LICENSE.txt b/out/release/dev/vs/language/json/jsonWorker.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/language/json/jsonWorker.js.LICENSE.txt +++ b/out/release/dev/vs/language/json/jsonWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/language/json/monaco.contribution.js.LICENSE.txt b/out/release/dev/vs/language/json/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/language/json/monaco.contribution.js.LICENSE.txt +++ b/out/release/dev/vs/language/json/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/language/typescript/monaco.contribution.js.LICENSE.txt b/out/release/dev/vs/language/typescript/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/language/typescript/monaco.contribution.js.LICENSE.txt +++ b/out/release/dev/vs/language/typescript/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/language/typescript/tsMode.js.LICENSE.txt b/out/release/dev/vs/language/typescript/tsMode.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/language/typescript/tsMode.js.LICENSE.txt +++ b/out/release/dev/vs/language/typescript/tsMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/dev/vs/language/typescript/tsWorker.js.LICENSE.txt b/out/release/dev/vs/language/typescript/tsWorker.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/dev/vs/language/typescript/tsWorker.js.LICENSE.txt +++ b/out/release/dev/vs/language/typescript/tsWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/_.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/_.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/_.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/_.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/abap/abap.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/abap/abap.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/abap/abap.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/abap/abap.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/abap/abap.js.LICENSE.txt b/out/release/esm/vs/basic-languages/abap/abap.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/abap/abap.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/abap/abap.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/apex/apex.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/apex/apex.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/apex/apex.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/apex/apex.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/apex/apex.js.LICENSE.txt b/out/release/esm/vs/basic-languages/apex/apex.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/apex/apex.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/apex/apex.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/azcli/azcli.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/azcli/azcli.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/azcli/azcli.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/azcli/azcli.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/azcli/azcli.js.LICENSE.txt b/out/release/esm/vs/basic-languages/azcli/azcli.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/azcli/azcli.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/azcli/azcli.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/bat/bat.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/bat/bat.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/bat/bat.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/bat/bat.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/bat/bat.js.LICENSE.txt b/out/release/esm/vs/basic-languages/bat/bat.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/bat/bat.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/bat/bat.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/bicep/bicep.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/bicep/bicep.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/bicep/bicep.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/bicep/bicep.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/bicep/bicep.js.LICENSE.txt b/out/release/esm/vs/basic-languages/bicep/bicep.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/bicep/bicep.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/bicep/bicep.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/cameligo/cameligo.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/cameligo/cameligo.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/cameligo/cameligo.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/cameligo/cameligo.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt b/out/release/esm/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/clojure/clojure.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/clojure/clojure.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/clojure/clojure.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/clojure/clojure.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/clojure/clojure.js.LICENSE.txt b/out/release/esm/vs/basic-languages/clojure/clojure.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/clojure/clojure.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/clojure/clojure.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/coffee/coffee.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/coffee/coffee.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/coffee/coffee.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/coffee/coffee.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/coffee/coffee.js.LICENSE.txt b/out/release/esm/vs/basic-languages/coffee/coffee.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/coffee/coffee.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/coffee/coffee.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/cpp/cpp.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/cpp/cpp.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/cpp/cpp.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/cpp/cpp.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/cpp/cpp.js.LICENSE.txt b/out/release/esm/vs/basic-languages/cpp/cpp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/cpp/cpp.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/cpp/cpp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/csharp/csharp.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/csharp/csharp.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/csharp/csharp.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/csharp/csharp.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/csharp/csharp.js.LICENSE.txt b/out/release/esm/vs/basic-languages/csharp/csharp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/csharp/csharp.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/csharp/csharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/csp/csp.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/csp/csp.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/csp/csp.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/csp/csp.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/csp/csp.js.LICENSE.txt b/out/release/esm/vs/basic-languages/csp/csp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/csp/csp.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/csp/csp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/css/css.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/css/css.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/css/css.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/css/css.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/css/css.js.LICENSE.txt b/out/release/esm/vs/basic-languages/css/css.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/css/css.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/css/css.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/cypher/cypher.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/cypher/cypher.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/cypher/cypher.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/cypher/cypher.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/cypher/cypher.js.LICENSE.txt b/out/release/esm/vs/basic-languages/cypher/cypher.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/cypher/cypher.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/cypher/cypher.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/dart/dart.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/dart/dart.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/dart/dart.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/dart/dart.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/dart/dart.js.LICENSE.txt b/out/release/esm/vs/basic-languages/dart/dart.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/dart/dart.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/dart/dart.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/dockerfile/dockerfile.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/dockerfile/dockerfile.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/dockerfile/dockerfile.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/dockerfile/dockerfile.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt b/out/release/esm/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/ecl/ecl.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/ecl/ecl.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/ecl/ecl.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/ecl/ecl.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/ecl/ecl.js.LICENSE.txt b/out/release/esm/vs/basic-languages/ecl/ecl.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/ecl/ecl.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/ecl/ecl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/elixir/elixir.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/elixir/elixir.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/elixir/elixir.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/elixir/elixir.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/elixir/elixir.js.LICENSE.txt b/out/release/esm/vs/basic-languages/elixir/elixir.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/elixir/elixir.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/elixir/elixir.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/flow9/flow9.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/flow9/flow9.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/flow9/flow9.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/flow9/flow9.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/flow9/flow9.js.LICENSE.txt b/out/release/esm/vs/basic-languages/flow9/flow9.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/flow9/flow9.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/flow9/flow9.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/freemarker2/freemarker2.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/freemarker2/freemarker2.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/freemarker2/freemarker2.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/freemarker2/freemarker2.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt b/out/release/esm/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/fsharp/fsharp.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/fsharp/fsharp.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/fsharp/fsharp.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/fsharp/fsharp.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt b/out/release/esm/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/go/go.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/go/go.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/go/go.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/go/go.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/go/go.js.LICENSE.txt b/out/release/esm/vs/basic-languages/go/go.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/go/go.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/go/go.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/graphql/graphql.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/graphql/graphql.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/graphql/graphql.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/graphql/graphql.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/graphql/graphql.js.LICENSE.txt b/out/release/esm/vs/basic-languages/graphql/graphql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/graphql/graphql.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/graphql/graphql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/handlebars/handlebars.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/handlebars/handlebars.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/handlebars/handlebars.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/handlebars/handlebars.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt b/out/release/esm/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/hcl/hcl.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/hcl/hcl.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/hcl/hcl.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/hcl/hcl.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/hcl/hcl.js.LICENSE.txt b/out/release/esm/vs/basic-languages/hcl/hcl.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/hcl/hcl.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/hcl/hcl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/html/html.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/html/html.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/html/html.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/html/html.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/html/html.js.LICENSE.txt b/out/release/esm/vs/basic-languages/html/html.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/html/html.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/html/html.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/ini/ini.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/ini/ini.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/ini/ini.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/ini/ini.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/ini/ini.js.LICENSE.txt b/out/release/esm/vs/basic-languages/ini/ini.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/ini/ini.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/ini/ini.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/java/java.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/java/java.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/java/java.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/java/java.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/java/java.js.LICENSE.txt b/out/release/esm/vs/basic-languages/java/java.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/java/java.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/java/java.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/javascript/javascript.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/javascript/javascript.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/javascript/javascript.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/javascript/javascript.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/javascript/javascript.js.LICENSE.txt b/out/release/esm/vs/basic-languages/javascript/javascript.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/javascript/javascript.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/javascript/javascript.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/julia/julia.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/julia/julia.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/julia/julia.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/julia/julia.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/julia/julia.js.LICENSE.txt b/out/release/esm/vs/basic-languages/julia/julia.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/julia/julia.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/julia/julia.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/kotlin/kotlin.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/kotlin/kotlin.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/kotlin/kotlin.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/kotlin/kotlin.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt b/out/release/esm/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/less/less.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/less/less.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/less/less.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/less/less.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/less/less.js.LICENSE.txt b/out/release/esm/vs/basic-languages/less/less.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/less/less.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/less/less.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/lexon/lexon.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/lexon/lexon.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/lexon/lexon.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/lexon/lexon.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/lexon/lexon.js.LICENSE.txt b/out/release/esm/vs/basic-languages/lexon/lexon.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/lexon/lexon.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/lexon/lexon.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/liquid/liquid.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/liquid/liquid.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/liquid/liquid.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/liquid/liquid.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/liquid/liquid.js.LICENSE.txt b/out/release/esm/vs/basic-languages/liquid/liquid.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/liquid/liquid.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/liquid/liquid.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/lua/lua.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/lua/lua.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/lua/lua.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/lua/lua.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/lua/lua.js.LICENSE.txt b/out/release/esm/vs/basic-languages/lua/lua.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/lua/lua.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/lua/lua.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/m3/m3.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/m3/m3.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/m3/m3.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/m3/m3.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/m3/m3.js.LICENSE.txt b/out/release/esm/vs/basic-languages/m3/m3.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/m3/m3.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/m3/m3.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/markdown/markdown.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/markdown/markdown.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/markdown/markdown.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/markdown/markdown.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/markdown/markdown.js.LICENSE.txt b/out/release/esm/vs/basic-languages/markdown/markdown.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/markdown/markdown.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/markdown/markdown.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/mips/mips.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/mips/mips.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/mips/mips.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/mips/mips.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/mips/mips.js.LICENSE.txt b/out/release/esm/vs/basic-languages/mips/mips.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/mips/mips.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/mips/mips.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/monaco.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/monaco.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/msdax/msdax.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/msdax/msdax.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/msdax/msdax.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/msdax/msdax.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/msdax/msdax.js.LICENSE.txt b/out/release/esm/vs/basic-languages/msdax/msdax.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/msdax/msdax.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/msdax/msdax.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/mysql/mysql.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/mysql/mysql.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/mysql/mysql.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/mysql/mysql.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/mysql/mysql.js.LICENSE.txt b/out/release/esm/vs/basic-languages/mysql/mysql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/mysql/mysql.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/mysql/mysql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/objective-c/objective-c.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/objective-c/objective-c.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/objective-c/objective-c.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/objective-c/objective-c.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt b/out/release/esm/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/pascal/pascal.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/pascal/pascal.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/pascal/pascal.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/pascal/pascal.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/pascal/pascal.js.LICENSE.txt b/out/release/esm/vs/basic-languages/pascal/pascal.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/pascal/pascal.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/pascal/pascal.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/pascaligo/pascaligo.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/pascaligo/pascaligo.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/pascaligo/pascaligo.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/pascaligo/pascaligo.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt b/out/release/esm/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/perl/perl.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/perl/perl.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/perl/perl.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/perl/perl.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/perl/perl.js.LICENSE.txt b/out/release/esm/vs/basic-languages/perl/perl.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/perl/perl.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/perl/perl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/pgsql/pgsql.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/pgsql/pgsql.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/pgsql/pgsql.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/pgsql/pgsql.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt b/out/release/esm/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/php/php.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/php/php.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/php/php.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/php/php.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/php/php.js.LICENSE.txt b/out/release/esm/vs/basic-languages/php/php.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/php/php.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/php/php.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/pla/pla.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/pla/pla.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/pla/pla.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/pla/pla.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/pla/pla.js.LICENSE.txt b/out/release/esm/vs/basic-languages/pla/pla.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/pla/pla.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/pla/pla.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/postiats/postiats.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/postiats/postiats.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/postiats/postiats.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/postiats/postiats.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/postiats/postiats.js.LICENSE.txt b/out/release/esm/vs/basic-languages/postiats/postiats.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/postiats/postiats.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/postiats/postiats.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/powerquery/powerquery.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/powerquery/powerquery.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/powerquery/powerquery.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/powerquery/powerquery.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt b/out/release/esm/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/powershell/powershell.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/powershell/powershell.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/powershell/powershell.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/powershell/powershell.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/powershell/powershell.js.LICENSE.txt b/out/release/esm/vs/basic-languages/powershell/powershell.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/powershell/powershell.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/powershell/powershell.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/protobuf/protobuf.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/protobuf/protobuf.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/protobuf/protobuf.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/protobuf/protobuf.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt b/out/release/esm/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/pug/pug.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/pug/pug.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/pug/pug.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/pug/pug.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/pug/pug.js.LICENSE.txt b/out/release/esm/vs/basic-languages/pug/pug.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/pug/pug.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/pug/pug.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/python/python.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/python/python.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/python/python.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/python/python.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/python/python.js.LICENSE.txt b/out/release/esm/vs/basic-languages/python/python.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/python/python.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/python/python.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/qsharp/qsharp.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/qsharp/qsharp.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/qsharp/qsharp.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/qsharp/qsharp.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt b/out/release/esm/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/r/r.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/r/r.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/r/r.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/r/r.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/r/r.js.LICENSE.txt b/out/release/esm/vs/basic-languages/r/r.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/r/r.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/r/r.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/razor/razor.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/razor/razor.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/razor/razor.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/razor/razor.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/razor/razor.js.LICENSE.txt b/out/release/esm/vs/basic-languages/razor/razor.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/razor/razor.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/razor/razor.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/redis/redis.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/redis/redis.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/redis/redis.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/redis/redis.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/redis/redis.js.LICENSE.txt b/out/release/esm/vs/basic-languages/redis/redis.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/redis/redis.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/redis/redis.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/redshift/redshift.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/redshift/redshift.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/redshift/redshift.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/redshift/redshift.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/redshift/redshift.js.LICENSE.txt b/out/release/esm/vs/basic-languages/redshift/redshift.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/redshift/redshift.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/redshift/redshift.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/restructuredtext/restructuredtext.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/restructuredtext/restructuredtext.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/restructuredtext/restructuredtext.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/restructuredtext/restructuredtext.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt b/out/release/esm/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/ruby/ruby.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/ruby/ruby.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/ruby/ruby.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/ruby/ruby.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/ruby/ruby.js.LICENSE.txt b/out/release/esm/vs/basic-languages/ruby/ruby.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/ruby/ruby.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/ruby/ruby.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/rust/rust.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/rust/rust.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/rust/rust.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/rust/rust.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/rust/rust.js.LICENSE.txt b/out/release/esm/vs/basic-languages/rust/rust.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/rust/rust.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/rust/rust.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/sb/sb.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/sb/sb.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/sb/sb.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/sb/sb.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/sb/sb.js.LICENSE.txt b/out/release/esm/vs/basic-languages/sb/sb.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/sb/sb.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/sb/sb.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/scala/scala.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/scala/scala.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/scala/scala.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/scala/scala.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/scala/scala.js.LICENSE.txt b/out/release/esm/vs/basic-languages/scala/scala.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/scala/scala.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/scala/scala.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/scheme/scheme.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/scheme/scheme.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/scheme/scheme.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/scheme/scheme.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/scheme/scheme.js.LICENSE.txt b/out/release/esm/vs/basic-languages/scheme/scheme.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/scheme/scheme.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/scheme/scheme.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/scss/scss.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/scss/scss.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/scss/scss.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/scss/scss.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/scss/scss.js.LICENSE.txt b/out/release/esm/vs/basic-languages/scss/scss.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/scss/scss.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/scss/scss.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/shell/shell.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/shell/shell.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/shell/shell.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/shell/shell.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/shell/shell.js.LICENSE.txt b/out/release/esm/vs/basic-languages/shell/shell.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/shell/shell.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/shell/shell.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/solidity/solidity.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/solidity/solidity.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/solidity/solidity.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/solidity/solidity.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/solidity/solidity.js.LICENSE.txt b/out/release/esm/vs/basic-languages/solidity/solidity.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/solidity/solidity.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/solidity/solidity.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/sophia/sophia.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/sophia/sophia.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/sophia/sophia.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/sophia/sophia.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/sophia/sophia.js.LICENSE.txt b/out/release/esm/vs/basic-languages/sophia/sophia.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/sophia/sophia.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/sophia/sophia.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/sparql/sparql.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/sparql/sparql.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/sparql/sparql.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/sparql/sparql.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/sparql/sparql.js.LICENSE.txt b/out/release/esm/vs/basic-languages/sparql/sparql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/sparql/sparql.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/sparql/sparql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/sql/sql.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/sql/sql.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/sql/sql.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/sql/sql.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/sql/sql.js.LICENSE.txt b/out/release/esm/vs/basic-languages/sql/sql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/sql/sql.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/sql/sql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/st/st.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/st/st.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/st/st.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/st/st.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/st/st.js.LICENSE.txt b/out/release/esm/vs/basic-languages/st/st.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/st/st.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/st/st.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/swift/swift.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/swift/swift.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/swift/swift.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/swift/swift.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/swift/swift.js.LICENSE.txt b/out/release/esm/vs/basic-languages/swift/swift.js.LICENSE.txt index ec9536db..24804082 100644 --- a/out/release/esm/vs/basic-languages/swift/swift.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/swift/swift.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/systemverilog/systemverilog.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/systemverilog/systemverilog.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/systemverilog/systemverilog.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/systemverilog/systemverilog.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt b/out/release/esm/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/tcl/tcl.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/tcl/tcl.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/tcl/tcl.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/tcl/tcl.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/tcl/tcl.js.LICENSE.txt b/out/release/esm/vs/basic-languages/tcl/tcl.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/tcl/tcl.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/tcl/tcl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/twig/twig.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/twig/twig.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/twig/twig.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/twig/twig.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/twig/twig.js.LICENSE.txt b/out/release/esm/vs/basic-languages/twig/twig.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/twig/twig.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/twig/twig.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/typescript/typescript.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/typescript/typescript.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/typescript/typescript.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/typescript/typescript.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/typescript/typescript.js.LICENSE.txt b/out/release/esm/vs/basic-languages/typescript/typescript.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/typescript/typescript.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/typescript/typescript.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/vb/vb.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/vb/vb.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/vb/vb.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/vb/vb.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/vb/vb.js.LICENSE.txt b/out/release/esm/vs/basic-languages/vb/vb.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/vb/vb.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/vb/vb.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/xml/xml.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/xml/xml.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/xml/xml.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/xml/xml.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/xml/xml.js.LICENSE.txt b/out/release/esm/vs/basic-languages/xml/xml.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/xml/xml.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/xml/xml.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/yaml/yaml.contribution.js.LICENSE.txt b/out/release/esm/vs/basic-languages/yaml/yaml.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/yaml/yaml.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/yaml/yaml.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/basic-languages/yaml/yaml.js.LICENSE.txt b/out/release/esm/vs/basic-languages/yaml/yaml.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/basic-languages/yaml/yaml.js.LICENSE.txt +++ b/out/release/esm/vs/basic-languages/yaml/yaml.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/language/css/css.worker.js.LICENSE.txt b/out/release/esm/vs/language/css/css.worker.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/language/css/css.worker.js.LICENSE.txt +++ b/out/release/esm/vs/language/css/css.worker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/language/css/cssMode.js.LICENSE.txt b/out/release/esm/vs/language/css/cssMode.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/language/css/cssMode.js.LICENSE.txt +++ b/out/release/esm/vs/language/css/cssMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/language/css/monaco.contribution.js.LICENSE.txt b/out/release/esm/vs/language/css/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/language/css/monaco.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/language/css/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/language/html/html.worker.js.LICENSE.txt b/out/release/esm/vs/language/html/html.worker.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/language/html/html.worker.js.LICENSE.txt +++ b/out/release/esm/vs/language/html/html.worker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/language/html/htmlMode.js.LICENSE.txt b/out/release/esm/vs/language/html/htmlMode.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/language/html/htmlMode.js.LICENSE.txt +++ b/out/release/esm/vs/language/html/htmlMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/language/html/monaco.contribution.js.LICENSE.txt b/out/release/esm/vs/language/html/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/language/html/monaco.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/language/html/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/language/json/json.worker.js.LICENSE.txt b/out/release/esm/vs/language/json/json.worker.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/language/json/json.worker.js.LICENSE.txt +++ b/out/release/esm/vs/language/json/json.worker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/language/json/jsonMode.js.LICENSE.txt b/out/release/esm/vs/language/json/jsonMode.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/language/json/jsonMode.js.LICENSE.txt +++ b/out/release/esm/vs/language/json/jsonMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/language/json/monaco.contribution.js.LICENSE.txt b/out/release/esm/vs/language/json/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/language/json/monaco.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/language/json/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/language/typescript/monaco.contribution.js.LICENSE.txt b/out/release/esm/vs/language/typescript/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/language/typescript/monaco.contribution.js.LICENSE.txt +++ b/out/release/esm/vs/language/typescript/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/language/typescript/ts.worker.js.LICENSE.txt b/out/release/esm/vs/language/typescript/ts.worker.js.LICENSE.txt index 2a70fd0c..63d2d286 100644 --- a/out/release/esm/vs/language/typescript/ts.worker.js.LICENSE.txt +++ b/out/release/esm/vs/language/typescript/ts.worker.js.LICENSE.txt @@ -15,7 +15,7 @@ and limitations under the License. /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/esm/vs/language/typescript/tsMode.js.LICENSE.txt b/out/release/esm/vs/language/typescript/tsMode.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/esm/vs/language/typescript/tsMode.js.LICENSE.txt +++ b/out/release/esm/vs/language/typescript/tsMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/abap/abap.js.LICENSE.txt b/out/release/min/vs/basic-languages/abap/abap.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/abap/abap.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/abap/abap.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/apex/apex.js.LICENSE.txt b/out/release/min/vs/basic-languages/apex/apex.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/apex/apex.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/apex/apex.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/azcli/azcli.js.LICENSE.txt b/out/release/min/vs/basic-languages/azcli/azcli.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/azcli/azcli.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/azcli/azcli.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/bat/bat.js.LICENSE.txt b/out/release/min/vs/basic-languages/bat/bat.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/bat/bat.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/bat/bat.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/bicep/bicep.js.LICENSE.txt b/out/release/min/vs/basic-languages/bicep/bicep.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/bicep/bicep.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/bicep/bicep.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt b/out/release/min/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/clojure/clojure.js.LICENSE.txt b/out/release/min/vs/basic-languages/clojure/clojure.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/clojure/clojure.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/clojure/clojure.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/coffee/coffee.js.LICENSE.txt b/out/release/min/vs/basic-languages/coffee/coffee.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/coffee/coffee.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/coffee/coffee.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/cpp/cpp.js.LICENSE.txt b/out/release/min/vs/basic-languages/cpp/cpp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/cpp/cpp.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/cpp/cpp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/csharp/csharp.js.LICENSE.txt b/out/release/min/vs/basic-languages/csharp/csharp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/csharp/csharp.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/csharp/csharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/csp/csp.js.LICENSE.txt b/out/release/min/vs/basic-languages/csp/csp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/csp/csp.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/csp/csp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/css/css.js.LICENSE.txt b/out/release/min/vs/basic-languages/css/css.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/css/css.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/css/css.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/cypher/cypher.js.LICENSE.txt b/out/release/min/vs/basic-languages/cypher/cypher.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/cypher/cypher.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/cypher/cypher.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/dart/dart.js.LICENSE.txt b/out/release/min/vs/basic-languages/dart/dart.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/dart/dart.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/dart/dart.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt b/out/release/min/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/ecl/ecl.js.LICENSE.txt b/out/release/min/vs/basic-languages/ecl/ecl.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/ecl/ecl.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/ecl/ecl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/elixir/elixir.js.LICENSE.txt b/out/release/min/vs/basic-languages/elixir/elixir.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/elixir/elixir.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/elixir/elixir.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/flow9/flow9.js.LICENSE.txt b/out/release/min/vs/basic-languages/flow9/flow9.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/flow9/flow9.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/flow9/flow9.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt b/out/release/min/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt b/out/release/min/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/go/go.js.LICENSE.txt b/out/release/min/vs/basic-languages/go/go.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/go/go.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/go/go.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/graphql/graphql.js.LICENSE.txt b/out/release/min/vs/basic-languages/graphql/graphql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/graphql/graphql.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/graphql/graphql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt b/out/release/min/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/hcl/hcl.js.LICENSE.txt b/out/release/min/vs/basic-languages/hcl/hcl.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/hcl/hcl.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/hcl/hcl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/html/html.js.LICENSE.txt b/out/release/min/vs/basic-languages/html/html.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/html/html.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/html/html.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/ini/ini.js.LICENSE.txt b/out/release/min/vs/basic-languages/ini/ini.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/ini/ini.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/ini/ini.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/java/java.js.LICENSE.txt b/out/release/min/vs/basic-languages/java/java.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/java/java.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/java/java.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/javascript/javascript.js.LICENSE.txt b/out/release/min/vs/basic-languages/javascript/javascript.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/javascript/javascript.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/javascript/javascript.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/julia/julia.js.LICENSE.txt b/out/release/min/vs/basic-languages/julia/julia.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/julia/julia.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/julia/julia.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt b/out/release/min/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/less/less.js.LICENSE.txt b/out/release/min/vs/basic-languages/less/less.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/less/less.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/less/less.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/lexon/lexon.js.LICENSE.txt b/out/release/min/vs/basic-languages/lexon/lexon.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/lexon/lexon.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/lexon/lexon.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/liquid/liquid.js.LICENSE.txt b/out/release/min/vs/basic-languages/liquid/liquid.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/liquid/liquid.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/liquid/liquid.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/lua/lua.js.LICENSE.txt b/out/release/min/vs/basic-languages/lua/lua.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/lua/lua.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/lua/lua.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/m3/m3.js.LICENSE.txt b/out/release/min/vs/basic-languages/m3/m3.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/m3/m3.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/m3/m3.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/markdown/markdown.js.LICENSE.txt b/out/release/min/vs/basic-languages/markdown/markdown.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/markdown/markdown.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/markdown/markdown.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/mips/mips.js.LICENSE.txt b/out/release/min/vs/basic-languages/mips/mips.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/mips/mips.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/mips/mips.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/monaco.contribution.js.LICENSE.txt b/out/release/min/vs/basic-languages/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/monaco.contribution.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/msdax/msdax.js.LICENSE.txt b/out/release/min/vs/basic-languages/msdax/msdax.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/msdax/msdax.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/msdax/msdax.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/mysql/mysql.js.LICENSE.txt b/out/release/min/vs/basic-languages/mysql/mysql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/mysql/mysql.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/mysql/mysql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt b/out/release/min/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/pascal/pascal.js.LICENSE.txt b/out/release/min/vs/basic-languages/pascal/pascal.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/pascal/pascal.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/pascal/pascal.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt b/out/release/min/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/perl/perl.js.LICENSE.txt b/out/release/min/vs/basic-languages/perl/perl.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/perl/perl.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/perl/perl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt b/out/release/min/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/php/php.js.LICENSE.txt b/out/release/min/vs/basic-languages/php/php.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/php/php.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/php/php.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/pla/pla.js.LICENSE.txt b/out/release/min/vs/basic-languages/pla/pla.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/pla/pla.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/pla/pla.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/postiats/postiats.js.LICENSE.txt b/out/release/min/vs/basic-languages/postiats/postiats.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/postiats/postiats.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/postiats/postiats.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt b/out/release/min/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/powershell/powershell.js.LICENSE.txt b/out/release/min/vs/basic-languages/powershell/powershell.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/powershell/powershell.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/powershell/powershell.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt b/out/release/min/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/pug/pug.js.LICENSE.txt b/out/release/min/vs/basic-languages/pug/pug.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/pug/pug.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/pug/pug.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/python/python.js.LICENSE.txt b/out/release/min/vs/basic-languages/python/python.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/python/python.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/python/python.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt b/out/release/min/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/r/r.js.LICENSE.txt b/out/release/min/vs/basic-languages/r/r.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/r/r.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/r/r.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/razor/razor.js.LICENSE.txt b/out/release/min/vs/basic-languages/razor/razor.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/razor/razor.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/razor/razor.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/redis/redis.js.LICENSE.txt b/out/release/min/vs/basic-languages/redis/redis.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/redis/redis.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/redis/redis.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/redshift/redshift.js.LICENSE.txt b/out/release/min/vs/basic-languages/redshift/redshift.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/redshift/redshift.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/redshift/redshift.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt b/out/release/min/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/ruby/ruby.js.LICENSE.txt b/out/release/min/vs/basic-languages/ruby/ruby.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/ruby/ruby.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/ruby/ruby.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/rust/rust.js.LICENSE.txt b/out/release/min/vs/basic-languages/rust/rust.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/rust/rust.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/rust/rust.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/sb/sb.js.LICENSE.txt b/out/release/min/vs/basic-languages/sb/sb.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/sb/sb.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/sb/sb.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/scala/scala.js.LICENSE.txt b/out/release/min/vs/basic-languages/scala/scala.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/scala/scala.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/scala/scala.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/scheme/scheme.js.LICENSE.txt b/out/release/min/vs/basic-languages/scheme/scheme.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/scheme/scheme.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/scheme/scheme.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/scss/scss.js.LICENSE.txt b/out/release/min/vs/basic-languages/scss/scss.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/scss/scss.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/scss/scss.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/shell/shell.js.LICENSE.txt b/out/release/min/vs/basic-languages/shell/shell.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/shell/shell.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/shell/shell.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/solidity/solidity.js.LICENSE.txt b/out/release/min/vs/basic-languages/solidity/solidity.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/solidity/solidity.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/solidity/solidity.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/sophia/sophia.js.LICENSE.txt b/out/release/min/vs/basic-languages/sophia/sophia.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/sophia/sophia.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/sophia/sophia.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/sparql/sparql.js.LICENSE.txt b/out/release/min/vs/basic-languages/sparql/sparql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/sparql/sparql.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/sparql/sparql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/sql/sql.js.LICENSE.txt b/out/release/min/vs/basic-languages/sql/sql.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/sql/sql.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/sql/sql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/st/st.js.LICENSE.txt b/out/release/min/vs/basic-languages/st/st.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/st/st.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/st/st.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/swift/swift.js.LICENSE.txt b/out/release/min/vs/basic-languages/swift/swift.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/swift/swift.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/swift/swift.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt b/out/release/min/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/tcl/tcl.js.LICENSE.txt b/out/release/min/vs/basic-languages/tcl/tcl.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/tcl/tcl.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/tcl/tcl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/twig/twig.js.LICENSE.txt b/out/release/min/vs/basic-languages/twig/twig.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/twig/twig.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/twig/twig.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/typescript/typescript.js.LICENSE.txt b/out/release/min/vs/basic-languages/typescript/typescript.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/typescript/typescript.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/typescript/typescript.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/vb/vb.js.LICENSE.txt b/out/release/min/vs/basic-languages/vb/vb.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/vb/vb.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/vb/vb.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/xml/xml.js.LICENSE.txt b/out/release/min/vs/basic-languages/xml/xml.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/xml/xml.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/xml/xml.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/basic-languages/yaml/yaml.js.LICENSE.txt b/out/release/min/vs/basic-languages/yaml/yaml.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/basic-languages/yaml/yaml.js.LICENSE.txt +++ b/out/release/min/vs/basic-languages/yaml/yaml.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/language/css/cssMode.js.LICENSE.txt b/out/release/min/vs/language/css/cssMode.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/language/css/cssMode.js.LICENSE.txt +++ b/out/release/min/vs/language/css/cssMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/language/css/cssWorker.js.LICENSE.txt b/out/release/min/vs/language/css/cssWorker.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/language/css/cssWorker.js.LICENSE.txt +++ b/out/release/min/vs/language/css/cssWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/language/css/monaco.contribution.js.LICENSE.txt b/out/release/min/vs/language/css/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/language/css/monaco.contribution.js.LICENSE.txt +++ b/out/release/min/vs/language/css/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/language/html/htmlMode.js.LICENSE.txt b/out/release/min/vs/language/html/htmlMode.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/language/html/htmlMode.js.LICENSE.txt +++ b/out/release/min/vs/language/html/htmlMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/language/html/htmlWorker.js.LICENSE.txt b/out/release/min/vs/language/html/htmlWorker.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/language/html/htmlWorker.js.LICENSE.txt +++ b/out/release/min/vs/language/html/htmlWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/language/html/monaco.contribution.js.LICENSE.txt b/out/release/min/vs/language/html/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/language/html/monaco.contribution.js.LICENSE.txt +++ b/out/release/min/vs/language/html/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/language/json/jsonMode.js.LICENSE.txt b/out/release/min/vs/language/json/jsonMode.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/language/json/jsonMode.js.LICENSE.txt +++ b/out/release/min/vs/language/json/jsonMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/language/json/jsonWorker.js.LICENSE.txt b/out/release/min/vs/language/json/jsonWorker.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/language/json/jsonWorker.js.LICENSE.txt +++ b/out/release/min/vs/language/json/jsonWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/language/json/monaco.contribution.js.LICENSE.txt b/out/release/min/vs/language/json/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/language/json/monaco.contribution.js.LICENSE.txt +++ b/out/release/min/vs/language/json/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/language/typescript/monaco.contribution.js.LICENSE.txt b/out/release/min/vs/language/typescript/monaco.contribution.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/language/typescript/monaco.contribution.js.LICENSE.txt +++ b/out/release/min/vs/language/typescript/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/language/typescript/tsMode.js.LICENSE.txt b/out/release/min/vs/language/typescript/tsMode.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/language/typescript/tsMode.js.LICENSE.txt +++ b/out/release/min/vs/language/typescript/tsMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/release/min/vs/language/typescript/tsWorker.js.LICENSE.txt b/out/release/min/vs/language/typescript/tsWorker.js.LICENSE.txt index 39126d56..78bfd6b1 100644 --- a/out/release/min/vs/language/typescript/tsWorker.js.LICENSE.txt +++ b/out/release/min/vs/language/typescript/tsWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.35.0(8f9c2ecf4fd4e47b87e37b432045ed868b66ad63) + * Version: 0.35.0(6e7b4b68ddcb19b807624e7d42790a7eba7d4468) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/