Skip to content

Commit

Permalink
Switched to NPM
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdikoomen committed Feb 11, 2022
1 parent 6f5d0e4 commit ec2c712
Show file tree
Hide file tree
Showing 7 changed files with 28,337 additions and 8,179 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ jobs:
- v1-dependencies-
- run:
name: Install dependencies
command: yarn install
command: npm install
- save_cache:
key: v1-dependencies-{{ checksum "package.json" }}
paths:
- node_modules
- run:
name: Build library
command: yarn run release
command: npm run release
- run:
name: Run unit tests
command: yarn run test:coverage
command: npm run test:coverage
- run:
name: Run e2e tests
command: yarn run test:e2e
command: npm run test:e2e
- run:
name: Submit to Codecov
command: yarn run codecov
command: npm run codecov
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ https://help.github.com/articles/using-pull-requests

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

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

0 comments on commit ec2c712

Please sign in to comment.