Skip to content

Commit

Permalink
fix: fix url repo pkg (#413)
Browse files Browse the repository at this point in the history
* fix: fix url repo pkg

* fix path
  • Loading branch information
thedaviddias authored May 25, 2020
1 parent c42c643 commit b7f5786
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "The Static Code Analysis Tool for your HTML",
"repository": {
"type": "git",
"url": "https://github.com/htmlhint/HTMLHint"
"url": "git+https://github.com/htmlhint/HTMLHint.git"
},
"bugs": {
"url": "https://github.com/htmlhint/HTMLHint/issues"
Expand Down
4 changes: 2 additions & 2 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const remarkImages = require('remark-images')
const rehypeTruncate = require('rehype-truncate')

const PACKAGE = require('../package')
const GITHUB_URL = `${PACKAGE.repository.url}`
const GITHUB_URL = 'https://github.com/htmlhint/HTMLHint'

module.exports = {
title: 'HTMLHint',
Expand Down Expand Up @@ -89,7 +89,7 @@ module.exports = {
'@docusaurus/preset-classic',
{
docs: {
path: `../docs`,
path: '../docs',
sidebarPath: require.resolve('./sidebars.js'),
showLastUpdateAuthor: true,
showLastUpdateTime: true,
Expand Down

0 comments on commit b7f5786

Please sign in to comment.