pgpm 4.10.4 → 4.10.5
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/workspace.js +1 -2
- package/esm/commands/init/workspace.js +1 -2
- package/esm/index.js +0 -1
- package/index.js +0 -1
- package/package.json +7 -7
|
@@ -30,8 +30,7 @@ async function runWorkspaceSetup(argv, prompter) {
|
|
|
30
30
|
prompter.close();
|
|
31
31
|
const templateRepo = argv.repo ?? core_1.DEFAULT_TEMPLATE_REPO;
|
|
32
32
|
// Don't set default template - let scaffoldTemplate use metadata-driven resolution
|
|
33
|
-
|
|
34
|
-
const template = (argv.template || argv.templatePath);
|
|
33
|
+
const template = (argv.template);
|
|
35
34
|
// Register workspace.dirname resolver so boilerplate templates can use it via defaultFrom/setFrom
|
|
36
35
|
// This provides the intended workspace directory name before the folder is created
|
|
37
36
|
const dirName = path_1.default.basename(targetPath);
|
|
@@ -24,8 +24,7 @@ export default async function runWorkspaceSetup(argv, prompter) {
|
|
|
24
24
|
prompter.close();
|
|
25
25
|
const templateRepo = argv.repo ?? DEFAULT_TEMPLATE_REPO;
|
|
26
26
|
// Don't set default template - let scaffoldTemplate use metadata-driven resolution
|
|
27
|
-
|
|
28
|
-
const template = (argv.template || argv.templatePath);
|
|
27
|
+
const template = (argv.template);
|
|
29
28
|
// Register workspace.dirname resolver so boilerplate templates can use it via defaultFrom/setFrom
|
|
30
29
|
// This provides the intended workspace directory name before the folder is created
|
|
31
30
|
const dirName = path.basename(targetPath);
|
package/esm/index.js
CHANGED
|
@@ -32,7 +32,6 @@ export const options = {
|
|
|
32
32
|
v: 'version',
|
|
33
33
|
h: 'help',
|
|
34
34
|
'from-branch': 'fromBranch',
|
|
35
|
-
// Support both --template and --template-path (deprecated) for backward compatibility
|
|
36
35
|
'template-path': 'template',
|
|
37
36
|
t: 'template',
|
|
38
37
|
// -w for --create-workspace flag
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgpm",
|
|
3
|
-
"version": "4.10.
|
|
3
|
+
"version": "4.10.5",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "PostgreSQL Package Manager - Database migration and package management CLI",
|
|
6
6
|
"main": "index.js",
|
|
@@ -46,18 +46,18 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@inquirerer/utils": "^3.3.5",
|
|
49
|
-
"@pgpmjs/core": "^6.10.
|
|
50
|
-
"@pgpmjs/env": "^2.16.
|
|
51
|
-
"@pgpmjs/export": "^0.2.
|
|
49
|
+
"@pgpmjs/core": "^6.10.5",
|
|
50
|
+
"@pgpmjs/env": "^2.16.3",
|
|
51
|
+
"@pgpmjs/export": "^0.2.6",
|
|
52
52
|
"@pgpmjs/logger": "^2.5.2",
|
|
53
|
-
"@pgpmjs/types": "^2.20.
|
|
53
|
+
"@pgpmjs/types": "^2.20.3",
|
|
54
54
|
"@pgsql/quotes": "^17.1.0",
|
|
55
55
|
"appstash": "^0.7.0",
|
|
56
56
|
"find-and-require-package-json": "^0.9.1",
|
|
57
57
|
"genomic": "^5.3.9",
|
|
58
58
|
"inquirerer": "^4.7.0",
|
|
59
59
|
"js-yaml": "^4.1.0",
|
|
60
|
-
"pg-cache": "^3.4.
|
|
60
|
+
"pg-cache": "^3.4.3",
|
|
61
61
|
"pg-env": "^1.8.2",
|
|
62
62
|
"pgsql-deparser": "^17.18.2",
|
|
63
63
|
"semver": "^7.7.4",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"pg",
|
|
77
77
|
"pgsql"
|
|
78
78
|
],
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "d0d8f5ca5828ad3efba5f607bc699a8d520e4603"
|
|
80
80
|
}
|