From c5c197b1459c4c9d811739b248576586b22d7482 Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Wed, 22 Feb 2023 11:39:04 +0100 Subject: [PATCH] Fixes task config --- .vscode/tasks.json | 7 ++++--- CONTRIBUTING.md | 20 +++++--------------- README.md | 8 ++------ 3 files changed, 11 insertions(+), 24 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 623afc56..53a9eea0 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -8,11 +8,12 @@ "isBackground": true, "problemMatcher": { "pattern": { - "regexp": "" + "regexp": "does not support problems" }, "background": { - "beginsPattern": ".*", - "endsPattern": ".*" + "activeOnStart": true, + "beginsPattern": "Shutting down http-server (will never match)", + "endsPattern": "Starting up http-server" } }, "dependsOn": ["npm: watch"] diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a42d2115..10c7f30b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,6 +25,10 @@ Please understand that we only bundle languages with the monaco editor that have import './{myLang}/{myLang}.contribution'; ``` +## Debugging / Developing The Core Editor + +## Debugging / Developing Language Support + ## Running the editor from source 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 -> Note: The website is published automatically when pushing to the `master` branch. - -```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/ - -``` +TOD diff --git a/README.md b/README.md index 7e57f9d2..57164406 100644 --- a/README.md +++ b/README.md @@ -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). -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) @@ -41,7 +41,7 @@ It is recommended to develop against the `dev` version, and in production to use ## 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 @@ -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. -❓ **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 Please see [CONTRIBUTING](./CONTRIBUTING.md)