mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-06-09 17:41:32 +00:00
- Update repository links - Restructure the readme - Add contributing document - Update credits
23 lines
401 B
Markdown
23 lines
401 B
Markdown
# Contributing
|
|
|
|
To get started with contributing, clone the repository and install its dependencies.
|
|
|
|
```sh
|
|
git clone https://github.com/remcohaszing/monaco-yaml
|
|
cd monaco-yaml
|
|
npm ci
|
|
```
|
|
|
|
To build the repository, run:
|
|
|
|
```sh
|
|
npm prepack
|
|
```
|
|
|
|
To test it, run one of the
|
|
[examples](https://github.com/remcohaszing/monaco-yaml/tree/main/examples).
|
|
|
|
```sh
|
|
cd examples/webpack-worker-loader
|
|
npm start
|
|
```
|