Skip to content

Commit b7f5786

Browse files
authoredMay 25, 2020
fix: fix url repo pkg (#413)
* fix: fix url repo pkg * fix path
1 parent c42c643 commit b7f5786

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "The Static Code Analysis Tool for your HTML",
55
"repository": {
66
"type": "git",
7-
"url": "https://github.com/htmlhint/HTMLHint"
7+
"url": "git+https://github.com/htmlhint/HTMLHint.git"
88
},
99
"bugs": {
1010
"url": "https://github.com/htmlhint/HTMLHint/issues"

‎website/docusaurus.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const remarkImages = require('remark-images')
44
const rehypeTruncate = require('rehype-truncate')
55

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

99
module.exports = {
1010
title: 'HTMLHint',
@@ -89,7 +89,7 @@ module.exports = {
8989
'@docusaurus/preset-classic',
9090
{
9191
docs: {
92-
path: `../docs`,
92+
path: '../docs',
9393
sidebarPath: require.resolve('./sidebars.js'),
9494
showLastUpdateAuthor: true,
9595
showLastUpdateTime: true,

0 commit comments

Comments
 (0)
Please sign in to comment.