Skip to content

Commit 73df499

Browse files
committed
Versions and dependency updates
1 parent 295ef41 commit 73df499

File tree

3 files changed

+16
-14
lines changed

3 files changed

+16
-14
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ language: node_js
33
node_js:
44
- "4.2"
55
- "6"
6+
- "8"
67
cache:
78
directories:
89
- node_modules

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,10 @@ Example of using `junitXml` reporter:
110110
spec_files: ['**/*[sS]pec/.js'],
111111
helpers: [],
112112
reporters: {
113-
junitXml: {
114-
savePath: "reports",
115-
consolidateAll: true
113+
junitXml: {
114+
savePath: "reports",
115+
consolidateAll: true
116+
}
116117
}
117118
}
118119
```
@@ -178,7 +179,7 @@ Type: `boolean`
178179

179180
Default: `false`
180181

181-
Exit on failure by skipping any asyncronous tasks pending.
182+
Exit on failure by skipping any asynchronous tasks pending.
182183

183184

184185
#### options.captureExceptions
@@ -215,7 +216,7 @@ npm --versions
215216

216217
The `spec` reporter configuration has changed for v2 of this plugin. The following is an example of the change in configuration that is needed. This is not an exhaustive list: refer to the [jasmine-spec-reporter](https://github.com/bcaudan/jasmine-spec-reporter) for a full reference of the configuration options.
217218

218-
``` js
219+
```js
219220
// v1
220221
reporters: {
221222
spec: {
@@ -301,10 +302,10 @@ Please note that the junit reporter is no longer available. If you are using thi
301302

302303
## Release History
303304

304-
* `unreleased`
305+
* `v2.0.0` (2017-09-20)
305306
- **Breaking changes alert! Ensure you read the migration guide before updating from previous versions**
306-
- Updated to jasmine-spec-reporter v3.1.0. Older style configuration needs to be updated, see migration guide for more details.
307-
- Removed support for Node.js v0.10
307+
- Updated to jasmine-spec-reporter `v3.1.0`. Older style configuration needs to be updated, see migration guide for more details.
308+
- Removed support for Node.js `v0.10`
308309
* `v1.2.0` (2017-04-30)
309310
- Was compatible with Grunt `0.4` all the time, hence lowering the dependency requirement #60
310311
* `v1.1.1` (2016-08-29)

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grunt-jasmine-node-coverage",
33
"description": "Grunt task for running jasmine using istanbul for code coverage reports. Based off of grunt-jasmine-node by Omar Gonzalez (s9tpepper).",
4-
"version": "1.2.0",
4+
"version": "2.0.0",
55
"homepage": "https://github.com/jribble/grunt-jasmine-node-coverage",
66
"author": {
77
"name": "Jarrod Ribble",
@@ -37,15 +37,15 @@
3737
"README.md"
3838
],
3939
"dependencies": {
40-
"deepmerge": "^1.3.2",
40+
"deepmerge": "^1.5.1",
4141
"istanbul": "^0.4.5",
42-
"jasmine": "^2.5.2",
43-
"jasmine-reporters": "^2.2.0",
44-
"jasmine-spec-reporter": "^3.1.0"
42+
"jasmine": "^2.8.0",
43+
"jasmine-reporters": "^2.2.1",
44+
"jasmine-spec-reporter": "^4.2.1"
4545
},
4646
"devDependencies": {
4747
"grunt": "^1.0.1",
48-
"grunt-eslint": "^19.0.0"
48+
"grunt-eslint": "^20.1.0"
4949
},
5050
"peerDependencies": {
5151
"grunt": ">=0.4.5"

0 commit comments

Comments
 (0)