alchemy 0.43.4 → 0.43.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/bin/alchemy.mjs CHANGED
@@ -42033,9 +42033,6 @@ async function installDependencies(context, {
42033
42033
  const pm = context.packageManager;
42034
42034
  const commands = getPackageManagerCommands(pm);
42035
42035
  try {
42036
- console.log(await fs.readJson(`${targetCwd}/package.json`));
42037
- console.log({ dependencies: dependencies2 });
42038
- console.log({ devDependencies });
42039
42036
  if (!dependencies2 && !devDependencies) {
42040
42037
  await execa(commands.install, {
42041
42038
  cwd: targetCwd,
@@ -83,9 +83,6 @@ export async function installDependencies(
83
83
  const commands = getPackageManagerCommands(pm);
84
84
 
85
85
  try {
86
- console.log(await fs.readJson(`${targetCwd}/package.json`));
87
- console.log({ dependencies });
88
- console.log({ devDependencies });
89
86
  if (!dependencies && !devDependencies) {
90
87
  await execa(commands.install, {
91
88
  cwd: targetCwd,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alchemy",
3
- "version": "0.43.4",
3
+ "version": "0.43.5",
4
4
  "type": "module",
5
5
  "module": "./lib/index.js",
6
6
  "license": "Apache-2.0",