mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 16:15:41 +01:00
Merge branch 'main' into main
This commit is contained in:
commit
1e541d68dd
3 changed files with 11 additions and 24 deletions
7
.vscode/tasks.json
vendored
7
.vscode/tasks.json
vendored
|
|
@ -8,11 +8,12 @@
|
||||||
"isBackground": true,
|
"isBackground": true,
|
||||||
"problemMatcher": {
|
"problemMatcher": {
|
||||||
"pattern": {
|
"pattern": {
|
||||||
"regexp": ""
|
"regexp": "does not support problems"
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"beginsPattern": ".*",
|
"activeOnStart": true,
|
||||||
"endsPattern": ".*"
|
"beginsPattern": "Shutting down http-server (will never match)",
|
||||||
|
"endsPattern": "Starting up http-server"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dependsOn": ["npm: watch"]
|
"dependsOn": ["npm: watch"]
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,10 @@ Please understand that we only bundle languages with the monaco editor that have
|
||||||
import './{myLang}/{myLang}.contribution';
|
import './{myLang}/{myLang}.contribution';
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Debugging / Developing The Core Editor
|
||||||
|
|
||||||
|
## Debugging / Developing Language Support
|
||||||
|
|
||||||
## Running the editor from source
|
## Running the editor from source
|
||||||
|
|
||||||
You need to have all the build setup of VS Code to be able to build the Monaco Editor.
|
You need to have all the build setup of VS Code to be able to build the Monaco Editor.
|
||||||
|
|
@ -96,18 +100,4 @@ Open [http://localhost:8080/monaco-editor/test/manual/?editor=src](http://localh
|
||||||
|
|
||||||
## Running the website locally
|
## Running the website locally
|
||||||
|
|
||||||
> Note: The website is published automatically when pushing to the `master` branch.
|
TOD
|
||||||
|
|
||||||
```bash
|
|
||||||
# create a local release
|
|
||||||
/src/monaco-editor> npm run release
|
|
||||||
|
|
||||||
# build the website
|
|
||||||
/src/monaco-editor> npm run build-website
|
|
||||||
|
|
||||||
# start local webserver
|
|
||||||
/src/monaco-editor> npm run simpleserver
|
|
||||||
|
|
||||||
# open http://localhost:8080/monaco-editor-website/
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
The Monaco Editor is the code editor which powers [VS Code](https://github.com/microsoft/vscode), with the features better described [here](https://code.visualstudio.com/docs/editor/editingevolved).
|
The Monaco Editor is the code editor which powers [VS Code](https://github.com/microsoft/vscode), with the features better described [here](https://code.visualstudio.com/docs/editor/editingevolved).
|
||||||
|
|
||||||
Please note that this repository contains no source code for the code editor, it only contains the scripts to package everything together and ship the `monaco-editor` npm module.
|
Please note that this repository contains no source code for the code editor, it only contains the scripts to package everything together and ship the `monaco-editor` npm module and the implementation for various language supports.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
@ -41,7 +41,7 @@ It is recommended to develop against the `dev` version, and in production to use
|
||||||
|
|
||||||
## Issues
|
## Issues
|
||||||
|
|
||||||
Create [issues](https://github.com/microsoft/monaco-editor/issues) in this repository for anything related to the Monaco Editor. Always mention **the version** of the editor when creating issues and **the browser** you're having trouble in. Please search for existing issues to avoid duplicates.
|
Create [issues](https://github.com/microsoft/monaco-editor/issues) in this repository for anything related to the Monaco Editor. Please search for existing issues to avoid duplicates.
|
||||||
|
|
||||||
## FAQ
|
## FAQ
|
||||||
|
|
||||||
|
|
@ -79,10 +79,6 @@ No.
|
||||||
|
|
||||||
- Please see https://github.com/bolinfest/monaco-tm which puts together `monaco-editor`, `vscode-oniguruma` and `vscode-textmate` to get TM grammar support in the editor.
|
- Please see https://github.com/bolinfest/monaco-tm which puts together `monaco-editor`, `vscode-oniguruma` and `vscode-textmate` to get TM grammar support in the editor.
|
||||||
|
|
||||||
❓ **What about IE 11 support?**
|
|
||||||
|
|
||||||
- The Monaco Editor no longer supports IE 11. The last version that was tested on IE 11 is `0.18.1`.
|
|
||||||
|
|
||||||
## Development setup
|
## Development setup
|
||||||
|
|
||||||
Please see [CONTRIBUTING](./CONTRIBUTING.md)
|
Please see [CONTRIBUTING](./CONTRIBUTING.md)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue