Fix astro add @example-org/integration (#4430)

* fix: parse third-party org names

* chore: changeset
This commit is contained in:
Ben Holmes 2022-08-23 10:09:39 -04:00 committed by GitHub
parent bc5cb85232
commit dc42f2c00f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 8 deletions

View file

@ -0,0 +1,5 @@
---
'astro': patch
---
astro add - Fix third-party npm orgs, i.e. `@example/integration`

View file

@ -619,7 +619,7 @@ async function fetchPackageJson(
name: string,
tag: string
): Promise<object | Error> {
const packageName = `${scope ? `@${scope}/` : ''}${name}`;
const packageName = `${scope ? `${scope}/` : ''}${name}`;
const res = await fetch(`https://registry.npmjs.org/${packageName}/${tag}`);
if (res.status === 404) {
return new Error();
@ -637,13 +637,14 @@ export async function validateIntegrations(integrations: string[]): Promise<Inte
if (!parsed) {
throw new Error(`${bold(integration)} does not appear to be a valid package name!`);
}
let { scope, name, tag } = parsed;
let pkgJson = null;
let pkgType: 'first-party' | 'third-party' = 'first-party';
let pkgJson;
let pkgType: 'first-party' | 'third-party';
if (!scope) {
const firstPartyPkgCheck = await fetchPackageJson('astrojs', name, tag);
if (scope && scope !== '@astrojs') {
pkgType = 'third-party';
} else {
const firstPartyPkgCheck = await fetchPackageJson('@astrojs', name, tag);
if (firstPartyPkgCheck instanceof Error) {
spinner.warn(
yellow(`${bold(integration)} is not an official Astro package. Use at your own risk!`)
@ -664,6 +665,7 @@ export async function validateIntegrations(integrations: string[]): Promise<Inte
spinner.start('Resolving with third party packages...');
pkgType = 'third-party';
} else {
pkgType = 'first-party';
pkgJson = firstPartyPkgCheck as any;
}
}
@ -676,8 +678,8 @@ export async function validateIntegrations(integrations: string[]): Promise<Inte
}
}
const resolvedScope = pkgType === 'first-party' ? 'astrojs' : scope;
const packageName = `${resolvedScope ? `@${resolvedScope}/` : ''}${name}`;
const resolvedScope = pkgType === 'first-party' ? '@astrojs' : scope;
const packageName = `${resolvedScope ? `${resolvedScope}/` : ''}${name}`;
let dependencies: IntegrationInfo['dependencies'] = [
[pkgJson['name'], `^${pkgJson['version']}`],