Skip to content

Commit d7bac33

Browse files
authored
fix: remove sourcehut bugstemplate (#213)
Currently, using https://git.sr.ht/~user/repo in `npm init` results in the package.json file having a `bugs` URL of https://todo.sr.ht/~user/repo. However, this is not how SourceHut works. An issue tracker need not exist at that URL, and often projects have issue trackers that are named differently from the repository. Therefore, no information can be inferred about the issue tracker from the git URL.
1 parent 6caaf86 commit d7bac33

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lib/hosts.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,7 @@ hosts.sourcehut = {
199199
`https://${domain}/${user}/${project}.git${maybeJoin('#', committish)}`,
200200
tarballtemplate: ({ domain, user, project, committish }) =>
201201
`https://${domain}/${user}/${project}/archive/${maybeEncode(committish) || 'HEAD'}.tar.gz`,
202-
bugstemplate: ({ user, project }) =>
203-
`https://todo.sr.ht/${user}/${project}`,
202+
bugstemplate: ({ user, project }) => null,
204203
extract: (url) => {
205204
let [, user, project, aux] = url.pathname.split('/', 4)
206205

test/sourcehut.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ t.test('string methods populate correctly', t => {
106106
t.equal(parsed.tarball(), 'https://git.sr.ht/~foo/bar/archive/HEAD.tar.gz')
107107
t.equal(parsed.file(), 'https://git.sr.ht/~foo/bar/blob/HEAD/')
108108
t.equal(parsed.file('/lib/index.js'), 'https://git.sr.ht/~foo/bar/blob/HEAD/lib/index.js')
109-
t.equal(parsed.bugs(), 'https://todo.sr.ht/~foo/bar')
109+
t.equal(parsed.bugs(), null)
110110

111111
t.equal(
112112
parsed.docs({ committish: 'fix/bug' }),

0 commit comments

Comments
 (0)