Skip to content

Commit

Permalink
remove pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
meniRoy committed Sep 17, 2023
1 parent 3a724bd commit f8c86aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install pnpm
run: npm install -g [email protected]
- name: Install dependencies
run: npm ci
- name: Run unit tests
Expand Down
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
"url": "https://github.com/env0/vscode-env0"
},
"engines": {
"vscode": "^1.71.0",
"pnpm": "6.35.1"
"vscode": "^1.71.0"
},
"categories": [
"Other"
Expand Down Expand Up @@ -123,13 +122,13 @@
}
},
"scripts": {
"vscode:prepublish": "pnpm run package",
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/integration/runTest.js",
"unit:test": "mocha -r ts-node/register 'src/test/unit/**/*.spec.ts'"
Expand Down

0 comments on commit f8c86aa

Please sign in to comment.