gscan 4.16.0 → 4.16.1

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.
@@ -112,7 +112,7 @@ module.exports = class BaseRule {
112
112
  }
113
113
 
114
114
  isValidPartialReference(node) {
115
- return this.partials.includes(node.name.original);
115
+ return node.name.original === '@partial-block' || this.partials.includes(node.name.original);
116
116
  }
117
117
 
118
118
  isValidHelperReference(nodeName) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gscan",
3
- "version": "4.16.0",
3
+ "version": "4.16.1",
4
4
  "description": "Scans Ghost themes looking for errors, deprecations, features and compatibility",
5
5
  "keywords": [
6
6
  "ghost",
@@ -40,7 +40,7 @@
40
40
  "gscan": "./bin/cli.js"
41
41
  },
42
42
  "dependencies": {
43
- "@sentry/node": "6.16.0",
43
+ "@sentry/node": "6.16.1",
44
44
  "@tryghost/config": "0.2.1",
45
45
  "@tryghost/debug": "0.1.9",
46
46
  "@tryghost/ignition-errors": "0.1.8",