pgpm 4.2.4 → 4.3.1
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/commands/init/index.js
CHANGED
|
@@ -442,6 +442,7 @@ async function handleModuleInit(argv, prompter, ctx, wasExplicitModuleRequest =
|
|
|
442
442
|
answers: templateAnswers,
|
|
443
443
|
noTty: ctx.noTty,
|
|
444
444
|
pgpm: isPgpmTemplate,
|
|
445
|
+
prompter,
|
|
445
446
|
});
|
|
446
447
|
const isRoot = path_1.default.resolve(project.workspacePath) === path_1.default.resolve(ctx.cwd);
|
|
447
448
|
modulePath = isRoot
|
|
@@ -435,6 +435,7 @@ async function handleModuleInit(argv, prompter, ctx, wasExplicitModuleRequest =
|
|
|
435
435
|
answers: templateAnswers,
|
|
436
436
|
noTty: ctx.noTty,
|
|
437
437
|
pgpm: isPgpmTemplate,
|
|
438
|
+
prompter,
|
|
438
439
|
});
|
|
439
440
|
const isRoot = path.resolve(project.workspacePath) === path.resolve(ctx.cwd);
|
|
440
441
|
modulePath = isRoot
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgpm",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "PostgreSQL Package Manager - Database migration and package management CLI",
|
|
6
6
|
"main": "index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"test:watch": "jest --watch"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@inquirerer/test": "^1.3.
|
|
36
|
+
"@inquirerer/test": "^1.3.3",
|
|
37
37
|
"@types/js-yaml": "^4.0.9",
|
|
38
38
|
"@types/node": "^20.12.7",
|
|
39
39
|
"@types/pg": "^8.16.0",
|
|
@@ -45,15 +45,15 @@
|
|
|
45
45
|
"ts-node": "^10.9.2"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@inquirerer/utils": "^3.3.
|
|
49
|
-
"@pgpmjs/core": "^6.
|
|
48
|
+
"@inquirerer/utils": "^3.3.1",
|
|
49
|
+
"@pgpmjs/core": "^6.4.1",
|
|
50
50
|
"@pgpmjs/env": "^2.13.0",
|
|
51
51
|
"@pgpmjs/logger": "^2.2.0",
|
|
52
52
|
"@pgpmjs/types": "^2.17.0",
|
|
53
53
|
"appstash": "^0.3.0",
|
|
54
54
|
"find-and-require-package-json": "^0.9.0",
|
|
55
|
-
"genomic": "^5.3.
|
|
56
|
-
"inquirerer": "^4.
|
|
55
|
+
"genomic": "^5.3.5",
|
|
56
|
+
"inquirerer": "^4.5.2",
|
|
57
57
|
"js-yaml": "^4.1.0",
|
|
58
58
|
"pg-cache": "^3.1.0",
|
|
59
59
|
"pg-env": "^1.5.0",
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"pg",
|
|
75
75
|
"pgsql"
|
|
76
76
|
],
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "1c9efe4ecd5a6b8daa14fe42214ecf8c5b664198"
|
|
78
78
|
}
|