Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
javamind committed Dec 26, 2022
1 parent de4034b commit 568a65b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion extension/convert-to-blog-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function extConvertToBlogList(options, handlebarsTemplateFile, partials, filenam
description: function () { return pages[filename].description; },
gendate: function () { return time_1.currentDate(); },
genInstant: function () { return time_1.currentDateIso(); },
canonicalUrl: function () { return filename; },
canonicalUrl: function () { return (filename === 'index.html') ? null : filename; },
firstArticle: undefined,
secondArticles: undefined,
otherArticles: undefined,
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "devmind-website",
"version": "2.1.2",
"version": "2.1.11",
"description": "Gulp extensions to generate a website with blog pages written in asciidoc",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -35,15 +35,15 @@
"cheerio": "^0.22.0",
"fs": "^0.0.1-security",
"graceful-fs": "^4.2.4",
"handlebars": "^4.7.6",
"highlight.js": "^10.1.2",
"handlebars": "^4.7.7",
"highlight.js": "^10.7.3",
"kind-of": "^6.0.3",
"lodash.merge": "^4.6.2",
"mixin-deep": "^2.0.1",
"moment": "^2.27.0",
"plugin-error": "^1.0.1",
"prismjs": "^1.22.0",
"set-value": "^3.0.2",
"set-value": "^3.0.3",
"through2": "^4.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
Expand Down
24 changes: 12 additions & 12 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1318,10 +1318,10 @@ gulplog@^1.0.0:
dependencies:
glogg "^1.0.0"

handlebars@^4.7.6:
version "4.7.6"
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e"
integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA==
handlebars@^4.7.7:
version "4.7.7"
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1"
integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==
dependencies:
minimist "^1.2.5"
neo-async "^2.6.0"
Expand Down Expand Up @@ -1373,10 +1373,10 @@ has@^1.0.3:
dependencies:
function-bind "^1.1.1"

highlight.js@^10.1.2:
version "10.2.1"
resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.2.1.tgz#09784fe2e95612abbefd510948945d4fe6fa9668"
integrity sha512-A+sckVPIb9zQTUydC9lpRX1qRFO/N0OKEh0NwIr65ckvWA/oMY8v9P3+kGRK3w2ULSh9E8v5MszXafodQ6039g==
highlight.js@^10.7.3:
version "10.7.3"
resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.3.tgz#697272e3991356e40c3cac566a74eef681756531"
integrity sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==

homedir-polyfill@^1.0.1:
version "1.0.3"
Expand Down Expand Up @@ -2579,10 +2579,10 @@ set-value@^2.0.0, set-value@^2.0.1:
is-plain-object "^2.0.3"
split-string "^3.0.1"

set-value@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/set-value/-/set-value-3.0.2.tgz#74e8ecd023c33d0f77199d415409a40f21e61b90"
integrity sha512-npjkVoz+ank0zjlV9F47Fdbjfj/PfXyVhZvGALWsyIYU/qrMzpi6avjKW3/7KeSU2Df3I46BrN1xOI1+6vW0hA==
set-value@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/set-value/-/set-value-3.0.3.tgz#178e190d29cec6c086167222177b2fcb92f7ad56"
integrity sha512-Xsn/XSatoVOGBbp5hs3UylFDs5Bi9i+ArpVJKdHPniZHoEgRniXTqHWrWrGQ0PbEClVT6WtfnBwR8CAHC9sveg==
dependencies:
is-plain-object "^2.0.4"

Expand Down

0 comments on commit 568a65b

Please sign in to comment.