aiblueprint-cli 1.4.45 → 1.4.46
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/dist/cli.js
CHANGED
|
@@ -33154,6 +33154,7 @@ var KNOWN_CLAUDE_PATHS = [
|
|
|
33154
33154
|
];
|
|
33155
33155
|
function transformHookCommand(command, claudeDir) {
|
|
33156
33156
|
let transformed = command;
|
|
33157
|
+
transformed = replaceClaudePathPlaceholder(transformed, claudeDir);
|
|
33157
33158
|
for (const pattern of KNOWN_CLAUDE_PATHS) {
|
|
33158
33159
|
transformed = transformed.replace(pattern, `${claudeDir}/`);
|
|
33159
33160
|
}
|
|
@@ -35149,6 +35150,7 @@ async function installProConfigs(options) {
|
|
|
35149
35150
|
await import_fs_extra9.default.copy(tempDir, claudeFolder, {
|
|
35150
35151
|
overwrite: true
|
|
35151
35152
|
});
|
|
35153
|
+
await replacePathPlaceholdersInDir(claudeFolder, claudeFolder);
|
|
35152
35154
|
} catch (error) {
|
|
35153
35155
|
throw new Error(`Failed to install premium configs: ${error instanceof Error ? error.message : "Unknown error"}`);
|
|
35154
35156
|
} finally {
|