Skip to content

Commit 53b01b7

Browse files
committed
fix: update READMEs to use actual package.json names
- metaschema-modules: replace @pgpm/db-meta-modules with @pgpm/metaschema-modules - metaschema-schema: replace @pgpm/db-meta-schema with @pgpm/metaschema-schema - inflection: update cross-reference from @pgpm/db-meta-schema to @pgpm/metaschema-schema - Fix npm badge URLs to point to correct package directory paths
1 parent 8144027 commit 53b01b7

3 files changed

Lines changed: 14 additions & 14 deletions

File tree

packages/inflection/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ SELECT slug FROM blog_posts;
297297

298298
## Integration Examples
299299

300-
### With @pgpm/db-meta-schema
300+
### With @pgpm/metaschema-schema
301301

302302
Use inflection for schema introspection and code generation:
303303

packages/metaschema-modules/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @pgpm/db-meta-modules
1+
# @pgpm/metaschema-modules
22

33
<p align="center" width="100%">
44
<img height="250" src="https://raw.githubusercontent.com/constructive-io/constructive/refs/heads/main/assets/outline-logo.svg" />
@@ -9,14 +9,14 @@
99
<img height="20" src="https://github.com/constructive-io/pgpm-modules/actions/workflows/ci.yml/badge.svg" />
1010
</a>
1111
<a href="https://github.com/constructive-io/pgpm-modules/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
12-
<a href="https://www.npmjs.com/package/@pgpm/db-meta-modules"><img height="20" src="https://img.shields.io/github/package-json/v/constructive-io/pgpm-modules?filename=packages%2Fdb-meta-modules%2Fpackage.json"/></a>
12+
<a href="https://www.npmjs.com/package/@pgpm/metaschema-modules"><img height="20" src="https://img.shields.io/github/package-json/v/constructive-io/pgpm-modules?filename=packages%2Fmetaschema-modules%2Fpackage.json"/></a>
1313
</p>
1414

1515
Module metadata handling and dependency tracking.
1616

1717
## Overview
1818

19-
`@pgpm/db-meta-modules` extends the `@pgpm/db-meta-schema` package with module-specific metadata tables. This package provides tables for tracking various pgpm modules including authentication, permissions, memberships, encrypted secrets, and more. It enables configuration and metadata storage for modular application features.
19+
`@pgpm/metaschema-modules` extends the `@pgpm/metaschema-schema` package with module-specific metadata tables. This package provides tables for tracking various pgpm modules including authentication, permissions, memberships, encrypted secrets, and more. It enables configuration and metadata storage for modular application features.
2020

2121
## Features
2222

@@ -33,7 +33,7 @@ Module metadata handling and dependency tracking.
3333
If you have `pgpm` installed:
3434

3535
```bash
36-
pgpm install @pgpm/db-meta-modules
36+
pgpm install @pgpm/metaschema-modules
3737
pgpm deploy
3838
```
3939

@@ -56,7 +56,7 @@ eval "$(pgpm env)"
5656

5757
```bash
5858
# 1. Install the package
59-
pgpm install @pgpm/db-meta-modules
59+
pgpm install @pgpm/metaschema-modules
6060

6161
# 2. Deploy locally
6262
pgpm deploy
@@ -74,7 +74,7 @@ pgpm init
7474

7575
# 3. Install a package
7676
cd packages/my-module
77-
pgpm install @pgpm/db-meta-modules
77+
pgpm install @pgpm/metaschema-modules
7878

7979
# 4. Deploy everything
8080
pgpm deploy --createdb --database mydb1
@@ -213,7 +213,7 @@ Use module tables as feature flags:
213213

214214
## Dependencies
215215

216-
- `@pgpm/db-meta-schema`: Core metadata management
216+
- `@pgpm/metaschema-schema`: Core metadata management
217217
- `@pgpm/verify`: Verification utilities
218218

219219
## Testing

packages/metaschema-schema/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @pgpm/db-meta-schema
1+
# @pgpm/metaschema-schema
22

33
<p align="center" width="100%">
44
<img height="250" src="https://raw.githubusercontent.com/constructive-io/constructive/refs/heads/main/assets/outline-logo.svg" />
@@ -9,14 +9,14 @@
99
<img height="20" src="https://github.com/constructive-io/pgpm-modules/actions/workflows/ci.yml/badge.svg" />
1010
</a>
1111
<a href="https://github.com/constructive-io/pgpm-modules/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
12-
<a href="https://www.npmjs.com/package/@pgpm/db-meta-schema"><img height="20" src="https://img.shields.io/github/package-json/v/constructive-io/pgpm-modules?filename=packages%2Fdb-meta-schema%2Fpackage.json"/></a>
12+
<a href="https://www.npmjs.com/package/@pgpm/metaschema-schema"><img height="20" src="https://img.shields.io/github/package-json/v/constructive-io/pgpm-modules?filename=packages%2Fmetaschema-schema%2Fpackage.json"/></a>
1313
</p>
1414

1515
Database metadata utilities and introspection functions.
1616

1717
## Overview
1818

19-
`@pgpm/db-meta-schema` provides a comprehensive metadata management system for PostgreSQL databases. This package creates tables and schemas for storing and querying database structure information including databases, schemas, tables, fields, constraints, indexes, and more. It enables runtime schema introspection, metadata-driven code generation, and database structure management.
19+
`@pgpm/metaschema-schema` provides a comprehensive metadata management system for PostgreSQL databases. This package creates tables and schemas for storing and querying database structure information including databases, schemas, tables, fields, constraints, indexes, and more. It enables runtime schema introspection, metadata-driven code generation, and database structure management.
2020

2121
## Features
2222

@@ -34,7 +34,7 @@ Database metadata utilities and introspection functions.
3434
If you have `pgpm` installed:
3535

3636
```bash
37-
pgpm install @pgpm/db-meta-schema
37+
pgpm install @pgpm/metaschema-schema
3838
pgpm deploy
3939
```
4040

@@ -57,7 +57,7 @@ eval "$(pgpm env)"
5757

5858
```bash
5959
# 1. Install the package
60-
pgpm install @pgpm/db-meta-schema
60+
pgpm install @pgpm/metaschema-schema
6161

6262
# 2. Deploy locally
6363
pgpm deploy
@@ -75,7 +75,7 @@ pgpm init
7575

7676
# 3. Install a package
7777
cd packages/my-module
78-
pgpm install @pgpm/db-meta-schema
78+
pgpm install @pgpm/metaschema-schema
7979

8080
# 4. Deploy everything
8181
pgpm deploy --createdb --database mydb1

0 commit comments

Comments
 (0)