gscan 5.3.1 → 5.3.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/app/tpl/layouts/default.hbs +3 -3
- package/bin/cli.js +1 -1
- package/package.json +7 -7
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
|
|
58
58
|
</div>
|
|
59
59
|
<div class="gh-navbar-right">
|
|
60
|
-
<a class="gh-navbar-item" href="https://ghost.org/
|
|
60
|
+
<a class="gh-navbar-item" href="https://docs.ghost.org/themes/" target="blank" rel="noopener">Theme Docs</a>
|
|
61
61
|
<a class="gh-navbar-btn gh-btn" href="https://ghost.org/"><span>Ghost.org</span></a>
|
|
62
62
|
</div>
|
|
63
63
|
</nav>
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
</nav>
|
|
100
100
|
<div class="gh-mobilemenu">
|
|
101
101
|
<a class="gh-navbar-item" href="https://gscan.ghost.org">GScan</a>
|
|
102
|
-
<a class="gh-navbar-item" href="https://ghost.org/
|
|
102
|
+
<a class="gh-navbar-item" href="https://docs.ghost.org/themes/">Theme Docs</a>
|
|
103
103
|
<a class="gh-navbar-item" href="https://ghost.org/">Ghost.org</a>
|
|
104
104
|
</div>
|
|
105
105
|
</header>
|
|
@@ -191,4 +191,4 @@ var dynamicContent = getParameterByName('s');
|
|
|
191
191
|
});
|
|
192
192
|
</script>
|
|
193
193
|
</body>
|
|
194
|
-
</html>
|
|
194
|
+
</html>
|
package/bin/cli.js
CHANGED
|
@@ -6,7 +6,7 @@ process.removeAllListeners('warning');
|
|
|
6
6
|
const prettyCLI = require('@tryghost/pretty-cli');
|
|
7
7
|
const ui = require('@tryghost/pretty-cli').ui;
|
|
8
8
|
const _ = require('lodash');
|
|
9
|
-
const chalk = require('chalk');
|
|
9
|
+
const {default: chalk} = require('chalk');
|
|
10
10
|
const gscan = require('../lib');
|
|
11
11
|
const ghostVersions = require('../lib/utils').versions;
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gscan",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.2",
|
|
4
4
|
"description": "Scans Ghost themes looking for errors, deprecations, features and compatibility",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ghost",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"registry": "https://registry.npmjs.org/"
|
|
18
18
|
},
|
|
19
19
|
"engines": {
|
|
20
|
-
"node": "^20.
|
|
20
|
+
"node": "^20.19.0 || ^22.13.1 || ^24.0.0"
|
|
21
21
|
},
|
|
22
22
|
"bugs": {
|
|
23
23
|
"url": "https://github.com/TryGhost/gscan/issues"
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"gscan": "./bin/cli.js"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@sentry/node": "10.
|
|
46
|
+
"@sentry/node": "10.42.0",
|
|
47
47
|
"@tryghost/config": "2.0.0",
|
|
48
48
|
"@tryghost/debug": "2.0.0",
|
|
49
49
|
"@tryghost/errors": "3.0.0",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"chalk": "5.6.2",
|
|
56
56
|
"express": "5.2.1",
|
|
57
57
|
"express-handlebars": "7.1.3",
|
|
58
|
-
"fs-extra": "11.3.
|
|
58
|
+
"fs-extra": "11.3.4",
|
|
59
59
|
"glob": "13.0.6",
|
|
60
60
|
"lodash": "4.17.23",
|
|
61
61
|
"multer": "2.1.1",
|
|
@@ -63,17 +63,17 @@
|
|
|
63
63
|
"validator": "^13.0.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@eslint/compat": "2.0.
|
|
66
|
+
"@eslint/compat": "2.0.3",
|
|
67
67
|
"@eslint/js": "10.0.1",
|
|
68
68
|
"@tryghost/pro-ship": "1.0.7",
|
|
69
69
|
"c8": "11.0.0",
|
|
70
70
|
"eslint": "10.0.2",
|
|
71
|
-
"eslint-plugin-ghost": "3.
|
|
71
|
+
"eslint-plugin-ghost": "3.5.0",
|
|
72
72
|
"mocha": "11.7.5",
|
|
73
73
|
"nodemon": "3.1.14",
|
|
74
74
|
"rewire": "9.0.1",
|
|
75
75
|
"should": "13.2.3",
|
|
76
|
-
"sinon": "21.0.
|
|
76
|
+
"sinon": "21.0.2"
|
|
77
77
|
},
|
|
78
78
|
"files": [
|
|
79
79
|
"lib",
|