-
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(#15): fix parallelism issue with remote cache
- Loading branch information
Nate Moore
committed
Dec 15, 2021
1 parent
8bd5d95
commit 7a076d4
Showing
3 changed files
with
54 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"astro-icon": patch | ||
--- | ||
|
||
Fix parallelism issue when fetching icons from the Icon service in a map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
import { Icon } from 'astro-icon'; | ||
--- | ||
|
||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" type="image/x-icon" href="/favicon.ico" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<title>Astro Icon</title> | ||
<style lang="css"> | ||
[astro-icon] { | ||
color: blue; | ||
} | ||
[astro-icon="annotation"] { | ||
color: red; | ||
} | ||
[astro-icon="folder"] { | ||
color: green; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<h1>Welcome to Astro Icon!</h1> | ||
|
||
{[1,2,3].map(() => <Icon name="bi:stars" /> )} | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters