如何在 vscode repo 中找到相应的提交到 monaco-editor-core 版本
How to locate the corresponding commit in vscode repo to a monaco-editor-core release
如何将 monaco-editor-core
的特定版本映射回其在 vscode 存储库中的 git 提交?我想阅读构建版本的源代码。
背景:我在为 monaco 编辑器实现自己的语言支持时遇到了一些麻烦,需要检查源代码。 /esm/
npm 包中的源代码很好,但是 typescript 源代码更好。但是首先需要找到正确的 git 提交,vscode 仓库变化如此之快。
我在这里得到了答案:https://github.com/Microsoft/monaco-editor/issues/1293
/min
文件夹中文件的版权 header 包含提交:
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.15.5(3d42593a5844407ab71d47b348ea3a8de5fec848)
* Released under the MIT license
* https://github.com/Microsoft/vscode/blob/master/LICENSE.txt
*-----------------------------------------------------------*/
如何将 monaco-editor-core
的特定版本映射回其在 vscode 存储库中的 git 提交?我想阅读构建版本的源代码。
背景:我在为 monaco 编辑器实现自己的语言支持时遇到了一些麻烦,需要检查源代码。 /esm/
npm 包中的源代码很好,但是 typescript 源代码更好。但是首先需要找到正确的 git 提交,vscode 仓库变化如此之快。
我在这里得到了答案:https://github.com/Microsoft/monaco-editor/issues/1293
/min
文件夹中文件的版权 header 包含提交:
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.15.5(3d42593a5844407ab71d47b348ea3a8de5fec848)
* Released under the MIT license
* https://github.com/Microsoft/vscode/blob/master/LICENSE.txt
*-----------------------------------------------------------*/