pgpm 0.2.5 → 0.2.6
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 +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -137,8 +137,8 @@ psql -d mydb1 -c "SELECT faker.city('MI');"
|
|
|
137
137
|
### Testing a pgpm module in a workspace
|
|
138
138
|
|
|
139
139
|
```bash
|
|
140
|
-
# 1. Install dependencies
|
|
141
|
-
|
|
140
|
+
# 1. Install workspace dependencies
|
|
141
|
+
pnpm install
|
|
142
142
|
|
|
143
143
|
# 2. Enter the packages/<yourmodule>
|
|
144
144
|
cd packages/yourmodule
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgpm",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostgreSQL Package Manager - Database migration and package management CLI",
|
|
6
6
|
"main": "index.js",
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"pg",
|
|
71
71
|
"pgsql"
|
|
72
72
|
],
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "a871ed840bbc63854182bacec695324521eb3762"
|
|
74
74
|
}
|