Skip to content

Commit

Permalink
Release new version
Browse files Browse the repository at this point in the history
Re-enable Gscan during npm test because invalid theme breaks the production website.
  • Loading branch information
adamkudrna committed Nov 17, 2020
1 parent 0f47a01 commit f10d44a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
10 changes: 7 additions & 3 deletions default.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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\""
Expand Down

0 comments on commit f10d44a

Please sign in to comment.