Skip to content

Commit ed421b1

Browse files
authored
chore: fix repository links in package.json (#377)
*Issue #, if available:* *Description of changes:* The links in the package.jsons were wrong, making `npm repo` not work and the doc links not work on npm. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
1 parent 8d0b36b commit ed421b1

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"repository": {
2020
"type": "git",
21-
"url": "git@github.com:aws/aws-durable-execution-sdk-js.git"
21+
"url": "git+ssh://git@github.com/aws/aws-durable-execution-sdk-js.git"
2222
},
2323
"keywords": [],
2424
"author": {

packages/aws-durable-execution-sdk-js-eslint-plugin/package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
"name": "@aws/durable-execution-sdk-js-eslint-plugin",
33
"version": "1.0.0",
44
"description": "ESLint plugin for AWS Lambda durable functions best practices",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+ssh://git@github.com/aws/aws-durable-execution-sdk-js.git",
8+
"directory": "packages/aws-durable-execution-sdk-js-eslint-plugin"
9+
},
10+
"homepage": "https://github.com/aws/aws-durable-execution-sdk-js/tree/main/packages/aws-durable-execution-sdk-js-eslint-plugin",
511
"main": "dist/index.js",
612
"types": "dist/index.d.ts",
713
"engines": {

packages/aws-durable-execution-sdk-js-testing/package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
"description": "AWS Durable Execution Testing SDK for TypeScript",
44
"version": "1.0.0",
55
"license": "Apache-2.0",
6-
"repository": "ssh:github.com/aws/aws-durable-execution-sdk-js/tree/main/packages/aws-durable-execution-sdk-js-testing",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+ssh://git@github.com/aws/aws-durable-execution-sdk-js.git",
9+
"directory": "packages/aws-durable-execution-sdk-js-testing"
10+
},
711
"homepage": "https://github.com/aws/aws-durable-execution-sdk-js/tree/main/packages/aws-durable-execution-sdk-js-testing",
812
"engines": {
913
"node": ">=22"
@@ -12,7 +16,7 @@
1216
"module": "./dist/index.mjs",
1317
"types": "./dist-types/index.d.ts",
1418
"bin": {
15-
"run-durable": "./dist/cli/run-durable.js"
19+
"run-durable": "dist/cli/run-durable.js"
1620
},
1721
"scripts": {
1822
"clean": "rm -rf dist dist-cjs dist-types node_modules coverage .tsbuildinfo .rollup.cache",

packages/aws-durable-execution-sdk-js/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
"description": "AWS Durable Execution Language SDK for TypeScript",
44
"license": "Apache-2.0",
55
"version": "1.0.0",
6-
"repository": "ssh:github.com/aws/aws-durable-execution-sdk-js/tree/main/packages/aws-durable-execution-sdk-js",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+ssh://git@github.com/aws/aws-durable-execution-sdk-js.git",
9+
"directory": "packages/aws-durable-execution-sdk-js"
10+
},
711
"homepage": "https://github.com/aws/aws-durable-execution-sdk-js/tree/main/packages/aws-durable-execution-sdk-js",
812
"engines": {
913
"node": ">=22"

0 commit comments

Comments
 (0)