Skip to content

Commit a90bee0

Browse files
committed
Merge branch 'release/1.0.10'
2 parents 86b0df9 + 9b7297c commit a90bee0

File tree

5 files changed

+944
-466
lines changed

5 files changed

+944
-466
lines changed

.circleci/config.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- restore_cache:
2020
keys:
21-
- v1-dependencies-{{ checksum "package.json" }}
21+
- dependencies-{{ checksum "package.json" }}
2222

2323
- run:
2424
name: Install global packages
@@ -33,7 +33,7 @@ jobs:
3333
command: npm install
3434

3535
- save_cache:
36-
key: v1-dependencies-{{ checksum "package.json" }}
36+
key: dependencies-{{ checksum "package.json" }}
3737
paths:
3838
- node_modules
3939

@@ -45,11 +45,6 @@ jobs:
4545
name: Unit Tests with Code Coverage
4646
command: npm run test:unit:cov
4747

48-
# Far too flakey to run on CI
49-
# - run:
50-
# name: Mutation Tests
51-
# command: npm run test:mutants
52-
5348
- run:
5449
name: Integration Tests
5550
command: npm run test:integration

.github/FUNDING.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
github: [davesag]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ See some examples in the tests, and also:
113113

114114
### Prerequisites
115115

116-
- [NodeJS](htps://nodejs.org), version 10.16.1 (LTS) or better (I use [`nvm`](https://github.com/creationix/nvm) to manage Node versions — `brew install nvm`.)
116+
- [NodeJS](htps://nodejs.org), version 10.16.3 (LTS) or better (I use [`nvm`](https://github.com/creationix/nvm) to manage Node versions — `brew install nvm`.)
117117
- [Docker](https://www.docker.com) (Use [Docker for Mac](https://docs.docker.com/docker-for-mac/), not the homebrew version)
118118

119119
### Initialisation

0 commit comments

Comments
 (0)