@pgpm/metaschema-modules 0.18.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -7
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @pgpm/
|
|
1
|
+
# @pgpm/metaschema-modules
|
|
2
2
|
|
|
3
3
|
<p align="center" width="100%">
|
|
4
4
|
<img height="250" src="https://raw.githubusercontent.com/constructive-io/constructive/refs/heads/main/assets/outline-logo.svg" />
|
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
<img height="20" src="https://github.com/constructive-io/pgpm-modules/actions/workflows/ci.yml/badge.svg" />
|
|
10
10
|
</a>
|
|
11
11
|
<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/
|
|
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>
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
Module metadata handling and dependency tracking.
|
|
16
16
|
|
|
17
17
|
## Overview
|
|
18
18
|
|
|
19
|
-
`@pgpm/
|
|
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.
|
|
20
20
|
|
|
21
21
|
## Features
|
|
22
22
|
|
|
@@ -33,7 +33,7 @@ Module metadata handling and dependency tracking.
|
|
|
33
33
|
If you have `pgpm` installed:
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
|
-
pgpm install @pgpm/
|
|
36
|
+
pgpm install @pgpm/metaschema-modules
|
|
37
37
|
pgpm deploy
|
|
38
38
|
```
|
|
39
39
|
|
|
@@ -56,7 +56,7 @@ eval "$(pgpm env)"
|
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
58
|
# 1. Install the package
|
|
59
|
-
pgpm install @pgpm/
|
|
59
|
+
pgpm install @pgpm/metaschema-modules
|
|
60
60
|
|
|
61
61
|
# 2. Deploy locally
|
|
62
62
|
pgpm deploy
|
|
@@ -74,7 +74,7 @@ pgpm init
|
|
|
74
74
|
|
|
75
75
|
# 3. Install a package
|
|
76
76
|
cd packages/my-module
|
|
77
|
-
pgpm install @pgpm/
|
|
77
|
+
pgpm install @pgpm/metaschema-modules
|
|
78
78
|
|
|
79
79
|
# 4. Deploy everything
|
|
80
80
|
pgpm deploy --createdb --database mydb1
|
|
@@ -213,7 +213,7 @@ Use module tables as feature flags:
|
|
|
213
213
|
|
|
214
214
|
## Dependencies
|
|
215
215
|
|
|
216
|
-
- `@pgpm/
|
|
216
|
+
- `@pgpm/metaschema-schema`: Core metadata management
|
|
217
217
|
- `@pgpm/verify`: Verification utilities
|
|
218
218
|
|
|
219
219
|
## Testing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgpm/metaschema-modules",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.0",
|
|
4
4
|
"description": "Module metadata handling and dependency tracking",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"contributors": [
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"test:watch": "jest --watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@pgpm/metaschema-schema": "0.
|
|
25
|
-
"@pgpm/verify": "0.
|
|
24
|
+
"@pgpm/metaschema-schema": "0.19.0",
|
|
25
|
+
"@pgpm/verify": "0.19.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"pgpm": "^4.2.3"
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://github.com/constructive-io/pgpm-modules/issues"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "83be2dd4b07831c8c4f903437d20d350a673d19b"
|
|
39
39
|
}
|