Skip to content
This repository was archived by the owner on Mar 10, 2022. It is now read-only.

Commit d48f07e

Browse files
authored
fix: move from yarn to npm (#144)
1 parent cf2b309 commit d48f07e

File tree

5 files changed

+9052
-6520
lines changed

5 files changed

+9052
-6520
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
uses: actions/setup-node@v2
1515
with:
1616
node-version: '14.x'
17-
- run: yarn
18-
- run: yarn run prettier-check
19-
- run: yarn run eslint
20-
- run: yarn run build
17+
- run: npm install
18+
- run: npm run prettier-check
19+
- run: npm run eslint
20+
- run: npm run build
2121
- name: release
2222
if: github.repository_owner == 'sourcegraph' && github.event_name == 'push' && github.ref == 'refs/heads/master'
2323
env:
2424
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
26-
run: yarn run semantic-release
26+
run: npm run semantic-release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Please file an issue: https://github.com/sourcegraph/sourcegraph-vscode/issues/n
4141
To develop the extension:
4242

4343
- `git clone` the repository somewhere
44-
- Run `yarn` in the directory
44+
- Run `npm install` in the directory
4545
- Open the repo with `code .`
4646
- Press <kbd>F5</kbd> to open a new VS Code window with the extension loaded.
4747
- After making changes to `src/extension.ts`, reload the window by clicking the reload icon in the debug toolbar or with <kbd>F5</kbd>.

0 commit comments

Comments
 (0)