Skip to content

Commit f0ac5af

Browse files
Merge pull request #27 from modelcontextprotocol/justin/npm
Switch to npm
2 parents 00bcd2c + dd1773b commit f0ac5af

File tree

5 files changed

+6161
-3536
lines changed

5 files changed

+6161
-3536
lines changed

Diff for: .gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dist/**/* linguist-generated=true
1+
package-lock.json linguist-generated=true

Diff for: .github/workflows/main.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
- uses: actions/setup-node@v4
1515
with:
1616
node-version: 18
17-
cache: yarn
17+
cache: npm
1818

19-
- run: yarn install --immutable
20-
- run: yarn build
19+
- run: npm ci
20+
- run: npm run build
2121

22-
- name: Verify that `yarn build` did not change outputs
22+
- name: Verify that `npm run build` did not change outputs
2323
run: git diff --exit-code
2424

25-
- run: yarn test
26-
- run: yarn lint
25+
- run: npm test
26+
- run: npm run lint

0 commit comments

Comments
 (0)