File tree Expand file tree Collapse file tree 5 files changed +13
-8830
lines changed
Expand file tree Collapse file tree 5 files changed +13
-8830
lines changed Original file line number Diff line number Diff line change @@ -2,25 +2,27 @@ version: 2
22jobs :
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
Original file line number Diff line number Diff line change 11{
2- "extends": [
3- "@jedwards1211/eslint-config-typescript",
4- "prettier",
5- "prettier/@typescript-eslint"
6- ]
2+ "extends": ["@jedwards1211/eslint-config-typescript", "prettier"]
73}
Original file line number Diff line number Diff line change 11[ignore]
2+ <PROJECT_ROOT>/node_modules/.*/resolve/test/.*
23
34[include]
45
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ declare export class Parser {
2222}
2323
2424declare export var tsParser: Parser
25+ declare export var dtsParser: Parser
2526declare export var tsxParser: Parser
2627declare export var jsParser: Parser
2728
You can’t perform that action at this time.
0 commit comments