pgpm 4.10.4 → 4.10.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.
@@ -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
- // Support both --template (new) and --template-path (deprecated) for backward compatibility
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
- // Support both --template (new) and --template-path (deprecated) for backward compatibility
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
@@ -75,7 +75,6 @@ exports.options = {
75
75
  v: 'version',
76
76
  h: 'help',
77
77
  'from-branch': 'fromBranch',
78
- // Support both --template and --template-path (deprecated) for backward compatibility
79
78
  'template-path': 'template',
80
79
  t: 'template',
81
80
  // -w for --create-workspace flag
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgpm",
3
- "version": "4.10.4",
3
+ "version": "4.10.6",
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.4",
50
- "@pgpmjs/env": "^2.16.2",
51
- "@pgpmjs/export": "^0.2.5",
49
+ "@pgpmjs/core": "^6.10.6",
50
+ "@pgpmjs/env": "^2.16.3",
51
+ "@pgpmjs/export": "^0.2.7",
52
52
  "@pgpmjs/logger": "^2.5.2",
53
- "@pgpmjs/types": "^2.20.2",
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.2",
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": "98b0d29e8937be61d1afde2c6c1fdab74754b1e4"
79
+ "gitHead": "0b7edbd088ca9661503c5038134ee15311eac027"
80
80
  }