Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/analyze/replacements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function resolveUrl(url: KnownUrl): string {
case 'node':
return `https://nodejs.org/docs/latest/${url.id}`;
case 'e18e':
return `https://github.com/es-tooling/module-replacements/blob/main/docs/modules/${url.id}.md`;
return `https://github.com/e18e/module-replacements/blob/main/docs/modules/${url.id}.md`;
}
}

Expand Down
12 changes: 6 additions & 6 deletions src/test/__snapshots__/custom-manifests.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exports[`Custom Manifests > should handle invalid manifest files gracefully 1`]
exports[`Custom Manifests > should load and use custom manifest files 1`] = `
[
{
"message": "Module "@e18e/fake-0" can be replaced with inline native syntax. Use picocolors, kleur, or native console styling. See more at https://github.com/es-tooling/module-replacements/blob/main/docs/modules/fake-0.md.",
"message": "Module "@e18e/fake-0" can be replaced with inline native syntax. Use picocolors, kleur, or native console styling. See more at https://github.com/e18e/module-replacements/blob/main/docs/modules/fake-0.md.",
"score": 0,
"severity": "warning",
},
Expand All @@ -20,7 +20,7 @@ exports[`Custom Manifests > should load and use custom manifest files 1`] = `
"severity": "warning",
},
{
"message": "Module "@e18e/fake-3" can be replaced with a more performant alternative. See more at https://github.com/es-tooling/module-replacements/blob/main/docs/modules/request-alternatives.md.",
"message": "Module "@e18e/fake-3" can be replaced with a more performant alternative. See more at https://github.com/e18e/module-replacements/blob/main/docs/modules/request-alternatives.md.",
"score": 0,
"severity": "warning",
},
Expand All @@ -35,7 +35,7 @@ exports[`Custom Manifests > should load and use custom manifest files 1`] = `
exports[`Custom Manifests > should load multiple manifest files 1`] = `
[
{
"message": "Module "@e18e/fake-0" can be replaced with inline native syntax. Use picocolors, kleur, or native console styling. See more at https://github.com/es-tooling/module-replacements/blob/main/docs/modules/fake-0.md.",
"message": "Module "@e18e/fake-0" can be replaced with inline native syntax. Use picocolors, kleur, or native console styling. See more at https://github.com/e18e/module-replacements/blob/main/docs/modules/fake-0.md.",
"score": 0,
"severity": "warning",
},
Expand All @@ -50,7 +50,7 @@ exports[`Custom Manifests > should load multiple manifest files 1`] = `
"severity": "warning",
},
{
"message": "Module "@e18e/fake-3" can be replaced with a more performant alternative. See more at https://github.com/es-tooling/module-replacements/blob/main/docs/modules/request-alternatives.md.",
"message": "Module "@e18e/fake-3" can be replaced with a more performant alternative. See more at https://github.com/e18e/module-replacements/blob/main/docs/modules/request-alternatives.md.",
"score": 0,
"severity": "warning",
},
Expand All @@ -76,7 +76,7 @@ exports[`Custom Manifests > should prioritize custom replacements over built-in
{
"withCustom": [
{
"message": "Module "@e18e/fake-0" can be replaced with inline native syntax. Use picocolors, kleur, or native console styling. See more at https://github.com/es-tooling/module-replacements/blob/main/docs/modules/fake-0.md.",
"message": "Module "@e18e/fake-0" can be replaced with inline native syntax. Use picocolors, kleur, or native console styling. See more at https://github.com/e18e/module-replacements/blob/main/docs/modules/fake-0.md.",
"score": 0,
"severity": "warning",
},
Expand All @@ -91,7 +91,7 @@ exports[`Custom Manifests > should prioritize custom replacements over built-in
"severity": "warning",
},
{
"message": "Module "@e18e/fake-3" can be replaced with a more performant alternative. See more at https://github.com/es-tooling/module-replacements/blob/main/docs/modules/request-alternatives.md.",
"message": "Module "@e18e/fake-3" can be replaced with a more performant alternative. See more at https://github.com/e18e/module-replacements/blob/main/docs/modules/request-alternatives.md.",
"score": 0,
"severity": "warning",
},
Expand Down
Loading