File tree Expand file tree Collapse file tree 2 files changed +1089
-1077
lines changed Expand file tree Collapse file tree 2 files changed +1089
-1077
lines changed Original file line number Diff line number Diff 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.
6670Make sure the package name "${ packageName } " is correct and try again.` ,
6771 ) ;
6872 }
You can’t perform that action at this time.
0 commit comments