grunt-html-snapshots 3.0.1 → 4.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,13 +12,13 @@ jobs:
12
12
 
13
13
  strategy:
14
14
  matrix:
15
- node-version: [10.x, 12.x, 14.x]
15
+ node-version: [14.x, 16.x]
16
16
  # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
17
17
 
18
18
  steps:
19
- - uses: actions/checkout@v2
19
+ - uses: actions/checkout@v3
20
20
  - name: Use Node.js ${{ matrix.node-version }}
21
- uses: actions/setup-node@v2.1.4
21
+ uses: actions/setup-node@v3.0.0
22
22
  with:
23
23
  node-version: ${{ matrix.node-version }}
24
24
  - run: npm ci
package/Gruntfile.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * grunt-html-snapshots
3
3
  * https://github.com/localnerve/grunt-html-snapshots
4
4
  *
5
- * Copyright (c) 2013 - 2021 Alex Grant
5
+ * Copyright (c) 2013 - 2022 Alex Grant
6
6
  * Licensed under the MIT license.
7
7
  */
8
8
 
package/LICENSE.md CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 - 2021 Alex Grant
1
+ Copyright (c) 2013 - 2022 Alex Grant
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person
4
4
  obtaining a copy of this software and associated documentation
package/README.md CHANGED
@@ -2,9 +2,6 @@
2
2
 
3
3
  [![npm version](https://badge.fury.io/js/grunt-html-snapshots.svg)](http://badge.fury.io/js/grunt-html-snapshots)
4
4
  ![Verify](https://github.com/localnerve/grunt-html-snapshots/workflows/Verify/badge.svg)
5
- [![Dependency Status](https://david-dm.org/localnerve/grunt-html-snapshots.svg)](https://david-dm.org/localnerve/grunt-html-snapshots)
6
- [![devDependency Status](https://david-dm.org/localnerve/grunt-html-snapshots/dev-status.svg)](https://david-dm.org/localnerve/grunt-html-snapshots#info=devDependencies)
7
- [![devDependency Status](https://david-dm.org/localnerve/grunt-html-snapshots/peer-status.svg)](https://david-dm.org/localnerve/grunt-html-snapshots#info=peerDependencies)
8
5
 
9
6
  > The grunt task for [html-snapshots](http://github.com/localnerve/html-snapshots)
10
7
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "grunt-html-snapshots",
3
3
  "description": "The grunt task for html-snapshots",
4
- "version": "3.0.1",
4
+ "version": "4.0.2",
5
5
  "homepage": "https://github.com/localnerve/grunt-html-snapshots",
6
6
  "author": {
7
7
  "name": "Alex Grant",
@@ -18,20 +18,20 @@
18
18
  "license": "MIT",
19
19
  "main": "Gruntfile.js",
20
20
  "engines": {
21
- "node": ">= 10"
21
+ "node": ">= 14"
22
22
  },
23
23
  "scripts": {
24
24
  "test": "grunt test",
25
25
  "lint": "eslint ."
26
26
  },
27
27
  "dependencies": {
28
- "html-snapshots": ">= 0.17.8"
28
+ "html-snapshots": "^0.18.2"
29
29
  },
30
30
  "devDependencies": {
31
- "eslint": "^7.20.0",
32
- "grunt-contrib-clean": "^2.0.0",
33
- "grunt-contrib-nodeunit": "^2.0.0",
34
- "grunt": ">=1.0.0"
31
+ "eslint": "^8.12.0",
32
+ "grunt-contrib-clean": "^2.0.1",
33
+ "grunt-contrib-nodeunit": "^4.0.0",
34
+ "grunt": ">=1.5.3"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "grunt": ">=1.0.0"
@@ -2,7 +2,7 @@
2
2
  * grunt-html-snapshots
3
3
  * https://github.com/localnerve/grunt-html-snapshots
4
4
  *
5
- * Copyright (c) 2013 - 2021, LocalNerve, Alex Grant
5
+ * Copyright (c) 2013 - 2022, LocalNerve, Alex Grant
6
6
  * Licensed under the MIT license.
7
7
  */
8
8
  const html_snapshots = require('html-snapshots');