Merge pull request #3584 from microsoft/hediet/regulatory-butterfly

Fixes task config
pull/3583/head^2 v0.36.0-dev.20230223
Henning Dieterichs 2 years ago committed by GitHub
commit fb0d6bada1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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.
![image](https://user-images.githubusercontent.com/5047891/94183711-290c0780-fea3-11ea-90e3-c88ff9d21bd6.png) ![image](https://user-images.githubusercontent.com/5047891/94183711-290c0780-fea3-11ea-90e3-c88ff9d21bd6.png)
@ -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…
Cancel
Save