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

fix: move from yarn to npm #144

Merged
merged 1 commit into from
Feb 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .github/CODEOWNERS

This file was deleted.

10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: '14.x'
- run: yarn
- run: yarn run prettier-check
- run: yarn run eslint
- run: yarn run build
- run: npm install
- run: npm run prettier-check
- run: npm run eslint
- run: npm run build
- name: release
if: github.repository_owner == 'sourcegraph' && github.event_name == 'push' && github.ref == 'refs/heads/master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
run: yarn run semantic-release
run: npm run semantic-release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Please file an issue: https://github.com/sourcegraph/sourcegraph-vscode/issues/n
To develop the extension:

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