Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
madcodelife authored Feb 22, 2023
2 parents 0b9f3c1 + fb0d6ba commit 1e541d6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 24 deletions.
7 changes: 4 additions & 3 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
20 changes: 5 additions & 15 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 1e541d6

Please sign in to comment.