Skip to content

Commit ec2c712

Browse files
committed
Switched to NPM
1 parent 6f5d0e4 commit ec2c712

File tree

7 files changed

+28337
-8179
lines changed

7 files changed

+28337
-8179
lines changed

.circleci/config.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ jobs:
1212
- v1-dependencies-
1313
- run:
1414
name: Install dependencies
15-
command: yarn install
15+
command: npm install
1616
- save_cache:
1717
key: v1-dependencies-{{ checksum "package.json" }}
1818
paths:
1919
- node_modules
2020
- run:
2121
name: Build library
22-
command: yarn run release
22+
command: npm run release
2323
- run:
2424
name: Run unit tests
25-
command: yarn run test:coverage
25+
command: npm run test:coverage
2626
- run:
2727
name: Run e2e tests
28-
command: yarn run test:e2e
28+
command: npm run test:e2e
2929
- run:
3030
name: Submit to Codecov
31-
command: yarn run codecov
31+
command: npm run codecov

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ https://help.github.com/articles/using-pull-requests
2222

2323
1. Make your changes in a new git branch: `git checkout -b my-fix-branch master`
2424
2. Create your patch or feature
25-
3. Ensure the builds work by running: `yarn run build`
26-
4. Ensure the tests will pass by running: `yarn run test`
27-
5. Ensure the code is formatted by running: `yarn run eslint:fix`
25+
3. Ensure the builds work by running: `npm run build`
26+
4. Ensure the tests will pass by running: `npm run test`
27+
5. Ensure the code is formatted by running: `npm run eslint:fix`
2828
6. Commit your changes using a descriptive commit message
2929

3030
After your Pull Request is created, it will automatically be build using Circle CI.

0 commit comments

Comments
 (0)