Skip to content

Commit 7921038

Browse files
committed
chore: remove yarn leftovers
1 parent 666e0fe commit 7921038

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
- run:
3030
name: Install dependencies
3131
command: |
32-
yarn install --cwd example --frozen-lockfile
33-
yarn install --frozen-lockfile
32+
npm install --cwd example --frozen-lockfile
33+
npm install --frozen-lockfile
3434
- save_cache:
3535
key: dependencies-{{ checksum "package.json" }}
3636
paths: node_modules
@@ -48,7 +48,7 @@ jobs:
4848
- run:
4949
name: Lint files
5050
command: |
51-
yarn lint
51+
npm run lint
5252
5353
unit-tests:
5454
executor: default
@@ -57,7 +57,7 @@ jobs:
5757
- run:
5858
name: Run unit tests
5959
command: |
60-
yarn test --coverage
60+
npm test --coverage
6161
- store_artifacts:
6262
path: coverage
6363
destination: coverage
@@ -69,7 +69,7 @@ jobs:
6969
- run:
7070
name: Build package
7171
command: |
72-
yarn prepare
72+
npm prepare
7373
7474
workflows:
7575
build-and-test:

package.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,6 @@
103103
"node_modules/",
104104
"lib/"
105105
],
106-
"prettier": {
107-
"quoteProps": "consistent",
108-
"singleQuote": true,
109-
"tabWidth": 2,
110-
"trailingComma": "es5",
111-
"useTabs": false
112-
},
113106
"react-native-builder-bob": {
114107
"source": "src",
115108
"output": "lib",

0 commit comments

Comments
 (0)