alchemy 0.44.2 → 0.44.3
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/bin/alchemy.mjs +1 -2
- package/bin/commands/create.ts +2 -2
- package/bin/constants.ts +0 -1
- package/bin/services/package-manager.ts +1 -1
- package/package.json +1 -1
package/bin/alchemy.mjs
CHANGED
|
@@ -42593,7 +42593,6 @@ var PKG_ROOT = path8.join(distPath, "../");
|
|
|
42593
42593
|
var dependencyVersionMap = {
|
|
42594
42594
|
alchemy: process.env.NODE_ENV === "test" ? `file:${path8.resolve(PKG_ROOT)}` : getPackageVersion()
|
|
42595
42595
|
};
|
|
42596
|
-
console.log({ dependencyVersionMap });
|
|
42597
42596
|
|
|
42598
42597
|
// bin/services/dependencies.ts
|
|
42599
42598
|
var import_fs_extra2 = __toESM(require_lib(), 1);
|
|
@@ -47010,6 +47009,7 @@ async function setupVibeRules(context) {
|
|
|
47010
47009
|
const s = Y2();
|
|
47011
47010
|
s.start("Configuring vibe-rules...");
|
|
47012
47011
|
try {
|
|
47012
|
+
await ensureVibeRulesPostinstall(context.path, selectedEditor);
|
|
47013
47013
|
await installDependencies(context, {
|
|
47014
47014
|
devDependencies: ["vibe-rules"]
|
|
47015
47015
|
});
|
|
@@ -47018,7 +47018,6 @@ async function setupVibeRules(context) {
|
|
|
47018
47018
|
packageManager: context.packageManager,
|
|
47019
47019
|
cwd: context.path
|
|
47020
47020
|
});
|
|
47021
|
-
await ensureVibeRulesPostinstall(context.path, selectedEditor);
|
|
47022
47021
|
await installDependencies(context);
|
|
47023
47022
|
s.stop("vibe-rules configured");
|
|
47024
47023
|
} catch (error) {
|
package/bin/commands/create.ts
CHANGED
|
@@ -241,6 +241,8 @@ async function setupVibeRules(context: ProjectContext): Promise<void> {
|
|
|
241
241
|
s.start("Configuring vibe-rules...");
|
|
242
242
|
|
|
243
243
|
try {
|
|
244
|
+
await ensureVibeRulesPostinstall(context.path, selectedEditor);
|
|
245
|
+
|
|
244
246
|
await installDependencies(context, {
|
|
245
247
|
devDependencies: ["vibe-rules"],
|
|
246
248
|
});
|
|
@@ -251,8 +253,6 @@ async function setupVibeRules(context: ProjectContext): Promise<void> {
|
|
|
251
253
|
cwd: context.path,
|
|
252
254
|
});
|
|
253
255
|
|
|
254
|
-
await ensureVibeRulesPostinstall(context.path, selectedEditor);
|
|
255
|
-
|
|
256
256
|
// we need to install dependencies to trigger the postinstall script
|
|
257
257
|
await installDependencies(context);
|
|
258
258
|
|
package/bin/constants.ts
CHANGED