Skip to content

Commit 01e1e49

Browse files
committed
refactor: move to pnpm
1 parent 9332c93 commit 01e1e49

20 files changed

Lines changed: 8641 additions & 14567 deletions

File tree

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@1.6.3/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"linked": [],
6+
"access": "restricted",
7+
"baseBranch": "main",
8+
"updateInternalDependencies": "patch",
9+
"ignore": []
10+
}

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,16 @@ jobs:
1414
steps:
1515
- name: Checkout the repository
1616
uses: actions/checkout@v2
17+
- name: Install pnpm
18+
uses: pnpm/action-setup@v2.0.1
19+
with:
20+
version: 6
1721
- name: Install Node.js ${{ matrix.node-version }}
1822
uses: actions/setup-node@v2
1923
with:
2024
node-version: ${{ matrix.node-version }}
25+
cache: 'pnpm'
2126
- name: Install dependencies
22-
uses: bahmutov/npm-install@v1
27+
run: pnpm install
2328
- name: Run tests
24-
run: yarn test
29+
run: pnpm test

.gitignore

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,3 @@ build
2626

2727
# Env files
2828
.env
29-
30-
# Yarn
31-
.yarn/*
32-
!.yarn/package.json
33-
!.yarn/cache
34-
!.yarn/patches
35-
!.yarn/plugins
36-
!.yarn/releases
37-
!.yarn/sdks
38-
!.yarn/versions

.simple-git-hooks.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"commit-msg": "yarn commitlint --edit \"$1\"",
3-
"pre-commit": "yarn nano-staged",
4-
"pre-push": "yarn test"
2+
"commit-msg": "pnpm commitlint --edit \"$1\"",
3+
"pre-commit": "pnpm nano-staged",
4+
"pre-push": "pnpm test"
55
}

.yarn/package.json

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

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

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

.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

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

.yarn/releases/yarn-3.1.1.cjs

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

.yarnrc.yml

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

0 commit comments

Comments
 (0)