diff --git a/default.hbs b/default.hbs index b028437..ea18b8c 100644 --- a/default.hbs +++ b/default.hbs @@ -16,9 +16,13 @@ {{#is "home"}} {{@site.title}} — {{@site.description}} {{/is}} - {{#is "author"}} - {{author.name}} | {{@site.title}} - {{/is}} + {{!-- + Commented out until gscan error is fixed. + https://github.com/TryGhost/gscan/issues/365 + --}} + {{!--#is "author"--}} + {{!--author.name}} | {{@site.title--}} + {{!--/is--}} {{#is "tag"}} {{tag.name}} | {{@site.title}} {{/is}} diff --git a/package-lock.json b/package-lock.json index 92ce3e2..c163212 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "frontend-garden-ghost-theme", - "version": "2.2.0", + "version": "2.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d2e3e5b..a61de1c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "frontend-garden-ghost-theme", "description": "Frontend Garden Ghost theme", - "version": "2.2.0", + "version": "2.3.0", "license": "Apache-2.0", "author": { "name": "Adam Kudrna", @@ -30,9 +30,9 @@ "markdown:lint": "markdownlint **/*.md --ignore .cache --ignore dist --ignore node_modules", "gscan": "gscan .", "predist": "npm test && npm run build && mkdirp ./dist", - "dist": "zip --recurse-paths -X ./dist/$npm_package_name-v$npm_package_version.zip . --exclude \"node_modules/*\" --include \"*.hbs\" \"package.json\" \"sw.js\" \"manifest.webmanifest\" \"assets/built/*\" \"assets/icons/*\" \"assets/js/*\" \"locales/*\" \"partials/*\"", + "dist": "zip --recurse-paths -X ./dist/$npm_package_name-v$npm_package_version.zip . --exclude \"node_modules/*\" --include \"*.hbs\" \"package.json\" \"sw.js\" \"manifest.webmanifest\" \"assets/built/*\" \"assets/icons/*\" \"assets/js/*\" \"locales/*\" \"members\" \"partials/*\"", "start": "npm run watch", - "test": "concurrently \"npm run markdown:lint\" \"npm run css:lint\" \"npm run js:lint\"", + "test": "concurrently \"npm run gscan\" \"npm run markdown:lint\" \"npm run css:lint\" \"npm run js:lint\"", "watch": "concurrently --kill-others \"npm run watch:css\" \"npm run watch:js\"", "watch:css": "nodemon --watch assets/scss/ --ext scss --exec \"npm run css\"", "watch:js": "nodemon --watch assets/js/ --ext js --exec \"npm run js\""