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.
- package/.github/workflows/verify.yml +3 -3
- package/Gruntfile.js +1 -1
- package/LICENSE.md +1 -1
- package/README.md +0 -3
- package/package.json +7 -7
- package/tasks/html_snapshots.js +1 -1
|
@@ -12,13 +12,13 @@ jobs:
|
|
|
12
12
|
|
|
13
13
|
strategy:
|
|
14
14
|
matrix:
|
|
15
|
-
node-version: [
|
|
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@
|
|
19
|
+
- uses: actions/checkout@v3
|
|
20
20
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
21
|
-
uses: actions/setup-node@
|
|
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
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -2,9 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/js/grunt-html-snapshots)
|
|
4
4
|

|
|
5
|
-
[](https://david-dm.org/localnerve/grunt-html-snapshots)
|
|
6
|
-
[](https://david-dm.org/localnerve/grunt-html-snapshots#info=devDependencies)
|
|
7
|
-
[](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": "
|
|
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": ">=
|
|
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": "
|
|
28
|
+
"html-snapshots": "^0.18.2"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"eslint": "^
|
|
32
|
-
"grunt-contrib-clean": "^2.0.
|
|
33
|
-
"grunt-contrib-nodeunit": "^
|
|
34
|
-
"grunt": ">=1.
|
|
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"
|
package/tasks/html_snapshots.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 -
|
|
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');
|