Skip to content

Commit a46125a

Browse files
authored
chore: add repository information to package.json files (#540)
Added repository information to package.json files This PR adds the repository field to all package.json files in the monorepo, including: - pgflow (CLI package) - @pgflow/client - @pgflow/core - @pgflow/dsl - @pgflow/edge-worker Each repository field includes: - type: git - url: https://github.com/pgflow-dev/pgflow - directory: pointing to the specific package location within the monorepo This helps npm and other tools properly link to the source repository and specific package directory.
1 parent d6c37fe commit a46125a

File tree

5 files changed

+25
-0
lines changed

5 files changed

+25
-0
lines changed

pkgs/cli/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
"name": "pgflow",
33
"version": "0.10.0",
44
"license": "Apache-2.0",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/pgflow-dev/pgflow",
8+
"directory": "pkgs/cli"
9+
},
510
"type": "module",
611
"main": "./dist/index.js",
712
"typings": "./dist/index.d.ts",

pkgs/client/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
"name": "@pgflow/client",
33
"version": "0.10.0",
44
"license": "Apache-2.0",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/pgflow-dev/pgflow",
8+
"directory": "pkgs/client"
9+
},
510
"type": "module",
611
"scripts": {
712
"verify-exports": "node scripts/verify-exports.js"

pkgs/core/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
"name": "@pgflow/core",
33
"version": "0.10.0",
44
"license": "Apache-2.0",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/pgflow-dev/pgflow",
8+
"directory": "pkgs/core"
9+
},
510
"type": "module",
611
"main": "./dist/index.js",
712
"module": "./dist/index.js",

pkgs/dsl/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
"name": "@pgflow/dsl",
33
"version": "0.10.0",
44
"license": "Apache-2.0",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/pgflow-dev/pgflow",
8+
"directory": "pkgs/dsl"
9+
},
510
"type": "module",
611
"main": "./dist/index.js",
712
"module": "./dist/index.js",

pkgs/edge-worker/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
"name": "@pgflow/edge-worker",
33
"version": "0.10.0",
44
"license": "Apache-2.0",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/pgflow-dev/pgflow",
8+
"directory": "pkgs/edge-worker"
9+
},
510
"type": "module",
611
"main": "./dist/index.js",
712
"module": "./dist/index.js",

0 commit comments

Comments
 (0)