Skip to content

Commit 7aea10a

Browse files
committed
chore: use npm instead of yarn
1 parent 95c170d commit 7aea10a

File tree

5 files changed

+3260
-2040
lines changed

5 files changed

+3260
-2040
lines changed

.circleci/config.yml

+6-10
Original file line numberDiff line numberDiff line change
@@ -9,36 +9,32 @@ jobs:
99
- image: cimg/node:lts
1010
steps:
1111
- checkout
12-
- run: yarn
13-
- run: yarn run lint
12+
- run: npm
13+
- run: npm run lint
1414
test_node14:
1515
docker:
1616
- image: cimg/node:14.20
1717
steps:
1818
- checkout
19-
- run: yarn --ignore-engines
20-
- run: yarn run test
19+
- run: npm run test
2120
test_node16:
2221
docker:
2322
- image: cimg/node:16.18
2423
steps:
2524
- checkout
26-
- run: yarn --ignore-engines
27-
- run: yarn run test
25+
- run: npm run test
2826
test_node17:
2927
docker:
3028
- image: cimg/node:17.9
3129
steps:
3230
- checkout
33-
- run: yarn --ignore-engines
34-
- run: yarn run test
31+
- run: npm run test
3532
test_node18:
3633
docker:
3734
- image: cimg/node:18.11
3835
steps:
3936
- checkout
40-
- run: yarn --ignore-engines
41-
- run: yarn run test
37+
- run: npm run test
4238

4339
workflows:
4440
version: 2.1

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
node_modules/
2-
yarn-error.log
32

43
.vscode/launch.json

deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ printf "${GEEEN}git commit\n${RESET}"
4040
git commit -m "tada: upgrade to v$VERSION"
4141
git tag v$VERSION
4242

43-
printf "${GEEEN}Please command 'git push origin master && git push origin v$VERSION && yarn publish'\n${RESET}"
43+
printf "${GEEEN}Please command 'git push origin master && git push origin v$VERSION && npm publish'\n${RESET}"

0 commit comments

Comments
 (0)