Skip to content

Commit e3c2e27

Browse files
committed
Removes usage of yarn
We can still use yarn if we want but the lockfile will not be stored anymore. The reason being that yarn does not work with the git hooks for precommits we have setup. We could probably get it to work but npm works already so one package manages is enough.
1 parent 44b4ea8 commit e3c2e27

File tree

3 files changed

+7
-2394
lines changed

3 files changed

+7
-2394
lines changed

.github/workflows/main.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
with:
1414
node-version: ${{ matrix.node-version }}
1515
- name: Installing Extension
16-
run: yarn install
16+
run: npm ci
1717
- name: Compile
18-
run: yarn compile
18+
run: npm run compile
1919
- name: Linting
20-
run: yarn lint
20+
run: npm run lint
2121
- name: Test Syntax Highlighting
22-
run: yarn test:grammar
22+
run: npm run test:grammar
2323
- name: Test Unittests
2424
uses: GabrielBB/xvfb-action@v1
2525
with:
26-
run: yarn test
26+
run: npm test

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ First of all, this is a Visual Studio Code extension that uses TypeScript and to
1111
1. Fork the repo
1212
2. Clone your fork
1313
3. Create a branch
14-
4. Run `yarn install`
15-
5. To test the extension run `yarn test:grammar && yarn test`
14+
4. Run `npm install`
15+
5. To test the extension run `npm run test:grammar && npm test`

0 commit comments

Comments
 (0)