Browse Source

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

Fixes task config
Henning Dieterichs 2 years ago
parent
commit
fb0d6bada1
3 changed files with 11 additions and 24 deletions
  1. 4 3
      .vscode/tasks.json
  2. 5 15
      CONTRIBUTING.md
  3. 2 6
      README.md

+ 4 - 3
.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"]

+ 5 - 15
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

+ 2 - 6
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)