Skip to content

Commit 291346f

Browse files
committed
chore: switch to pnpm
1 parent 186661a commit 291346f

File tree

5 files changed

+13
-8830
lines changed

5 files changed

+13
-8830
lines changed

.circleci/config.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,27 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: circleci/node:14
5+
- image: circleci/node:16
66

77
steps:
88
- checkout
99
- run:
1010
name: Setup NPM Token
1111
command: |
12-
yarn config set registry "https://registry.npmjs.org/"
13-
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
14-
echo "registry=https://registry.npmjs.org/" >> .npmrc
12+
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
13+
echo "registry=https://registry.npmjs.org/" >> ~/.npmrc
14+
- run:
15+
name: Install pnpm
16+
command: sudo npm install --global pnpm
1517
- run:
1618
name: Install Dependencies
17-
command: yarn install --frozen-lockfile
19+
command: pnpm install --frozen-lockfile
1820
- run:
1921
name: build
20-
command: yarn run prepublishOnly
22+
command: pnpm prepublishOnly
2123
- run:
2224
name: upload test coverage
23-
command: yarn codecov
25+
command: pnpm codecov
2426
- run:
2527
name: release
26-
command: yarn run semantic-release
28+
command: pnpm semantic-release

.eslintrc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
{
2-
"extends": [
3-
"@jedwards1211/eslint-config-typescript",
4-
"prettier",
5-
"prettier/@typescript-eslint"
6-
]
2+
"extends": ["@jedwards1211/eslint-config-typescript", "prettier"]
73
}

.flowconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[ignore]
2+
<PROJECT_ROOT>/node_modules/.*/resolve/test/.*
23

34
[include]
45

src/index.js.flow

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ declare export class Parser {
2222
}
2323

2424
declare export var tsParser: Parser
25+
declare export var dtsParser: Parser
2526
declare export var tsxParser: Parser
2627
declare export var jsParser: Parser
2728

0 commit comments

Comments
 (0)