Skip to content

Commit

Permalink
infra(packages): correct "repository" field in package.json
Browse files Browse the repository at this point in the history
per `npm publish` warning
  • Loading branch information
AviVahl committed Aug 19, 2024
1 parent e9c2809 commit 9aeafbf
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
6 changes: 5 additions & 1 deletion packages/esm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@
},
"author": "Avi Vahl <[email protected]>",
"license": "MIT",
"repository": "https://github.com/AviVahl/ts-tools/tree/main/packages/esm",
"repository": {
"type": "git",
"url": "git+https://github.com/AviVahl/ts-tools.git",
"directory": "packages/esm"
},
"homepage": "https://github.com/AviVahl/ts-tools",
"publishConfig": {
"access": "public"
Expand Down
6 changes: 5 additions & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@
},
"author": "Avi Vahl <[email protected]>",
"license": "MIT",
"repository": "https://github.com/AviVahl/ts-tools/tree/main/packages/node",
"repository": {
"type": "git",
"url": "git+https://github.com/AviVahl/ts-tools.git",
"directory": "packages/node"
},
"homepage": "https://github.com/AviVahl/ts-tools",
"publishConfig": {
"access": "public"
Expand Down
6 changes: 5 additions & 1 deletion packages/robotrix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@
"sideEffects": false,
"author": "Avi Vahl <[email protected]>",
"license": "MIT",
"repository": "https://github.com/AviVahl/ts-tools/tree/main/packages/robotrix",
"repository": {
"type": "git",
"url": "git+https://github.com/AviVahl/ts-tools.git",
"directory": "packages/robotrix"
},
"homepage": "https://github.com/AviVahl/ts-tools",
"publishConfig": {
"access": "public"
Expand Down
6 changes: 5 additions & 1 deletion packages/transpile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
},
"author": "Avi Vahl <[email protected]>",
"license": "MIT",
"repository": "https://github.com/AviVahl/ts-tools/tree/main/packages/transpile",
"repository": {
"type": "git",
"url": "git+https://github.com/AviVahl/ts-tools.git",
"directory": "packages/transpile"
},
"homepage": "https://github.com/AviVahl/ts-tools",
"publishConfig": {
"access": "public"
Expand Down
6 changes: 5 additions & 1 deletion packages/webpack-loader/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@
},
"author": "Avi Vahl <[email protected]>",
"license": "MIT",
"repository": "https://github.com/AviVahl/ts-tools/tree/main/packages/webpack-loader",
"repository": {
"type": "git",
"url": "git+https://github.com/AviVahl/ts-tools.git",
"directory": "packages/webpack-loader"
},
"homepage": "https://github.com/AviVahl/ts-tools",
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 9aeafbf

Please sign in to comment.