Skip to content

Commit bc7414f

Browse files
author
Daniel Del Core
committed
renames internal references to codeshift
1 parent 1364c67 commit bc7414f

File tree

2 files changed

+1089
-1077
lines changed

2 files changed

+1089
-1077
lines changed

packages/cli/src/utils/fetch-package.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,14 @@ export async function fetchPackages(
4747
`${chalk.green(`Attempting to download npm package:`)} ${packageName}`,
4848
);
4949
remotePackage = await fetchRemotePackage(packageName, packageManager);
50-
spinner.succeed(`${chalk.green('Found hypermod package:')} ${packageName}`);
50+
spinner.succeed(
51+
`${chalk.green('Found remote Hypermod package:')} ${packageName}`,
52+
);
5153
} catch (error) {
5254
spinner.warn(
53-
`${chalk.yellow('Unable to locate hypermod package:')} ${packageName}`,
55+
`${chalk.yellow(
56+
'Unable to locate remote Hypermod package:',
57+
)} ${packageName}`,
5458
);
5559
}
5660

@@ -62,7 +66,7 @@ export async function fetchPackages(
6266

6367
if (!hypermodPackage && !remotePackage) {
6468
throw new Error(
65-
`Unable to locate package from Hypermod community or NPM.
69+
`Unable to locate package from Hypermod Community or NPM.
6670
Make sure the package name "${packageName}" is correct and try again.`,
6771
);
6872
}

0 commit comments

Comments
 (0)