Skip to content

Commit 98c1226

Browse files
fix: include .git in repository.url
1 parent 777d413 commit 98c1226

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Quickstart-friendly TypeScript template with comprehensive, configurable, opinionated tooling. ❤️‍🔥",
55
"repository": {
66
"type": "git",
7-
"url": "https://github.com/JoshuaKGoldberg/create-typescript-app"
7+
"url": "git+https://github.com/JoshuaKGoldberg/create-typescript-app.git"
88
},
99
"license": "MIT",
1010
"author": {

src/next/blocks/blockPackageJson.test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe("blockPackageJson", () => {
1313
expect(creation).toMatchInlineSnapshot(`
1414
{
1515
"files": {
16-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"Test description","repository":{"type":"git","url":"https://github.com/test-owner/test-repository"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"./lib/index.js","files":["README.md","package.json"]}",
16+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"Test description","repository":{"type":"git","url":"https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"./lib/index.js","files":["README.md","package.json"]}",
1717
},
1818
"scripts": [
1919
{
@@ -36,7 +36,7 @@ describe("blockPackageJson", () => {
3636
expect(creation).toMatchInlineSnapshot(`
3737
{
3838
"files": {
39-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"Test description","repository":{"type":"git","url":"https://github.com/test-owner/test-repository"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"./lib/index.js","files":["README.md","package.json"]}",
39+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"Test description","repository":{"type":"git","url":"https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"./lib/index.js","files":["README.md","package.json"]}",
4040
},
4141
"scripts": [
4242
{
@@ -73,7 +73,7 @@ describe("blockPackageJson", () => {
7373
expect(creation).toMatchInlineSnapshot(`
7474
{
7575
"files": {
76-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"Test description","repository":{"type":"git","url":"https://github.com/test-owner/test-repository"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"./lib/index.js","files":["README.md","package.json"],"dependencies":{"is-odd":"1.2.3"},"other":true}",
76+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"Test description","repository":{"type":"git","url":"https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"./lib/index.js","files":["README.md","package.json"],"dependencies":{"is-odd":"1.2.3"},"other":true}",
7777
},
7878
"scripts": [
7979
{
@@ -108,7 +108,7 @@ describe("blockPackageJson", () => {
108108
expect(creation).toMatchInlineSnapshot(`
109109
{
110110
"files": {
111-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"Test description","repository":{"type":"git","url":"https://github.com/test-owner/test-repository"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"./lib/index.js","files":["README.md","package.json"],"dependencies":{"is-odd":"1.2.3"},"devDependencies":{"is-even":"4.5.6"},"other":true}",
111+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"Test description","repository":{"type":"git","url":"https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"./lib/index.js","files":["README.md","package.json"],"dependencies":{"is-odd":"1.2.3"},"devDependencies":{"is-even":"4.5.6"},"other":true}",
112112
},
113113
"scripts": [
114114
{

src/next/blocks/blockPackageJson.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export const blockPackageJson = base.createBlock({
8383
name: options.repository,
8484
repository: {
8585
type: "git",
86-
url: `https://github.com/${options.owner}/${options.repository}`,
86+
url: `git+https://github.com/${options.owner}/${options.repository}.git`,
8787
},
8888
scripts: {
8989
...options.packageData?.scripts,

src/steps/writing/creation/writePackageJson.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ describe("writePackageJson", () => {
9696
},
9797
"repository": {
9898
"type": "git",
99-
"url": "https://github.com/test-owner/test-repository",
99+
"url": "https://github.com/test-owner/test-repository.git",
100100
},
101101
"scripts": {
102102
"build": "tsup",
@@ -168,7 +168,7 @@ describe("writePackageJson", () => {
168168
},
169169
"repository": {
170170
"type": "git",
171-
"url": "https://github.com/test-owner/test-repository",
171+
"url": "https://github.com/test-owner/test-repository.git",
172172
},
173173
"scripts": {
174174
"format": "prettier .",

src/steps/writing/creation/writePackageJson.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export async function writePackageJson(options: Options) {
9191
},
9292
repository: {
9393
type: "git",
94-
url: `https://github.com/${options.owner}/${options.repository}`,
94+
url: `git+https://github.com/${options.owner}/${options.repository}.git`,
9595
},
9696
scripts: {
9797
...existingPackageJson.scripts,

0 commit comments

Comments
 (0)