Skip to content

Commit 2adb550

Browse files
committed
chore: switch to pnpm
- remove yarn-specific .gitignore entries - update volta node version to meet requirements from pnpm 7 - update npm scripts to run with pnpm - add @types/babel__core type definitions - update pull request template - update CI Github Action to use pnpm
1 parent d933c82 commit 2adb550

File tree

5 files changed

+7906
-17
lines changed

5 files changed

+7906
-17
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
- [ ] It's really useful if your PR relates to an outstanding issue, so please reference it in your PR, or create an explanatory one for discussion. In many cases features are absent for a reason.
44
- [ ] This message body should clearly illustrate what problems it solves. If there are related issues, remember to reference them.
5-
- [ ] Ideally, include a test that fails without this PR but passes with it. PRs will only be merged once they pass CI. (Remember to `npm run lint`!)
5+
- [ ] Ideally, include a test that fails without this PR but passes with it. PRs will only be merged once they pass CI. (Remember to run `pnpm lint`!)
66

77
### Tests
88

9-
- [ ] Run the tests with `npm test` or `yarn test`
9+
- [ ] Run the tests with `npm test` or `pnpm test`

.github/workflows/ci.yml

+14-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,16 @@ jobs:
66
Lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v1
9+
- uses: actions/checkout@v2
10+
- uses: pnpm/action-setup@v2
11+
with:
12+
version: 7
1013
- uses: actions/setup-node@v2
1114
with:
1215
node-version: 14
13-
- uses: bahmutov/npm-install@v1
14-
- run: 'npm run lint'
16+
cache: 'pnpm'
17+
- run: pnpm install
18+
- run: pnpm lint
1519

1620
Tests:
1721
runs-on: ${{ matrix.os }}
@@ -22,11 +26,15 @@ jobs:
2226

2327
steps:
2428
- run: git config --global core.autocrlf false
25-
- uses: actions/checkout@v1
29+
- uses: actions/checkout@v2
30+
- uses: pnpm/action-setup@v2
31+
with:
32+
version: 7
2633
- uses: actions/setup-node@v2
2734
with:
2835
node-version: ${{ matrix.node-version }}
29-
- uses: bahmutov/npm-install@v1
30-
- run: npm run test
36+
cache: 'pnpm'
37+
- run: pnpm install
38+
- run: pnpm test
3139
env:
3240
CI: true

.gitignore

+1-6
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,4 @@ node_modules
33
*.log
44
coverage
55
dist/
6-
.yarn/cache
7-
.yarn/unplugged
8-
.yarn/build-state.yml
9-
.pnp.*
10-
pnpm-lock.yaml
11-
.idea
6+
.idea

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
"node": ">= 9.11.2"
2222
},
2323
"volta": {
24-
"node": "14.18.2"
24+
"node": "14.19.2"
2525
},
2626
"files": [
2727
"dist/"
2828
],
2929
"scripts": {
3030
"prebuild": "node scripts.js rmrf ./dist",
3131
"build": "tsc --build tsconfig.build.json",
32-
"dev": "npm run build -- -w",
32+
"dev": "pnpm build -w",
3333
"test": "jest",
3434
"lint": "eslint --ext js,ts .",
3535
"format": "prettier --write \"**/*.{ts,js,json}\"",
@@ -38,7 +38,7 @@
3838
"patch": "npm version patch -m 'chore(release): %s'",
3939
"minor": "npm version minor -m 'chore(release): %s'",
4040
"major": "npm version major -m 'chore(release): %s'",
41-
"prepublishOnly": "npm run test && npm run build"
41+
"prepublishOnly": "pnpm test && pnpm build"
4242
},
4343
"jest": {
4444
"collectCoverage": true,
@@ -79,6 +79,7 @@
7979
"@commitlint/config-conventional": "^11.0.0",
8080
"@kiwi/eslint-config": "^1.18.1",
8181
"@kiwi/prettier-config": "^1.18.1",
82+
"@types/babel__core": "^7.1.19",
8283
"@types/jest": "^27.0.2",
8384
"@types/node": "^14.0.11",
8485
"@types/node-sass": "^4.11.1",

0 commit comments

Comments
 (0)