Skip to content

Commit 4b109e4

Browse files
committed
Merge branch 'release/1.3.3'
2 parents cb612f2 + 512b283 commit 4b109e4

9 files changed

+12997
-4312
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
- restore_cache:
1212
keys:
13-
- dependencies-{{ checksum "package.json" }}
13+
- dependencies-v2-{{ checksum "package.json" }}
1414

1515
- run:
1616
name: Install global packages
@@ -21,7 +21,7 @@ jobs:
2121
command: npm install
2222

2323
- save_cache:
24-
key: dependencies-{{ checksum "package.json" }}
24+
key: dependencies-v2-{{ checksum "package.json" }}
2525
paths:
2626
- node_modules
2727

.eslintrc.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
// includes mocha plugins and env here because the code is
2-
// designed to run in a mocha context
31
module.exports = {
4-
extends: ['standard', 'prettier', 'prettier/standard'],
5-
plugins: ['prettier', 'standard', 'import', 'promise', 'mocha'],
2+
extends: ['standard', 'plugin:prettier/recommended'],
3+
plugins: ['import', 'promise', 'mocha'],
64
parserOptions: {
75
sourceType: 'module'
86
},

.husky/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/pre-commit

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npx --no-install lint-staged

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ By default `makeMockModels` and `listModels` will both look for your models in f
394394

395395
### Prerequisites
396396

397-
- [NodeJS](htps://nodejs.org), version 8.10.0 or better (I use [`nvm`](https://github.com/creationix/nvm) to manage Node versions — `brew install nvm`.)
397+
- [NodeJS](htps://nodejs.org). I use [`nvm`](https://github.com/creationix/nvm) to manage Node versions — `brew install nvm`.
398398

399399
### Initialisation
400400

@@ -406,7 +406,6 @@ npm install
406406

407407
- `npm test` — runs the unit tests
408408
- `npm run test:unit:cov` — runs the unit tests with code coverage
409-
- `npm run test:mutants` — runs the mutation tests
410409

411410
### Lint it
412411

0 commit comments

Comments
 (0)