Updated docs

This commit is contained in:
Elio Struyf
2023-11-14 19:46:59 +01:00
parent ab02e64708
commit 9724168c3f
2 changed files with 3 additions and 3 deletions

View File

@@ -25,9 +25,9 @@ Eager to start contributing? Great 🤩, you can contribute to the following pro
- Start by forking this project; - Start by forking this project;
- Clone your fork to your local machine; - Clone your fork to your local machine;
- Run `pnpm i`; - Run `npm i`;
- Open the project in VS Code; - Open the project in VS Code;
- To start developing, run `pnpm dev:ext` and press `f5` to start the debugging session. - To start developing, run `npm run dev:ext` and press `f5` to start the debugging session.
### Tips ### Tips

View File

@@ -2514,7 +2514,7 @@
"clean": "rimraf dist", "clean": "rimraf dist",
"start:site": "cd ./docs && npm run dev", "start:site": "cd ./docs && npm run dev",
"clean:test": "rm ./e2e/sample/frontmatter.json || exit 0 && rm -rf ./e2e/sample/.frontmatter || exit 0", "clean:test": "rm ./e2e/sample/frontmatter.json || exit 0 && rm -rf ./e2e/sample/.frontmatter || exit 0",
"test": "pnpm lint; tsc -p tsconfig.e2e.json && npm run clean:test && pnpm i -g @vscode/vsce && node ./e2e/out/runTests.js", "test": "npm run lint; tsc -p tsconfig.e2e.json && npm run clean:test && npm run i -g @vscode/vsce && node ./e2e/out/runTests.js",
"lint": "eslint --max-warnings=0 ./src/{commands,components}", "lint": "eslint --max-warnings=0 ./src/{commands,components}",
"prettier": "prettier --write ./src", "prettier": "prettier --write ./src",
"localization:watch": "node ./scripts/watch-localization.js", "localization:watch": "node ./scripts/watch-localization.js",