From 9724168c3f02bdb1f9ba6ca505d6f48ca4e04b9a Mon Sep 17 00:00:00 2001 From: Elio Struyf Date: Tue, 14 Nov 2023 19:46:59 +0100 Subject: [PATCH] Updated docs --- CONTRIBUTING.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1e6fdd80..7d5ebb4b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,9 +25,9 @@ Eager to start contributing? Great 🤩, you can contribute to the following pro - Start by forking this project; - Clone your fork to your local machine; -- Run `pnpm i`; +- Run `npm i`; - 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 diff --git a/package.json b/package.json index f06be3bd..53a59d18 100644 --- a/package.json +++ b/package.json @@ -2514,7 +2514,7 @@ "clean": "rimraf dist", "start:site": "cd ./docs && npm run dev", "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}", "prettier": "prettier --write ./src", "localization:watch": "node ./scripts/watch-localization.js",