Skip to content

Commit

Permalink
fix: workaround for denoland/deno/issues/8541
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Nov 29, 2020
1 parent c1afcaa commit d0dddb6
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 15 deletions.
6 changes: 3 additions & 3 deletions examples/default-src-directory/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ export default function Home() {
<h1>Welcome to use <strong>Aleph.js</strong>!</h1>
<p className="links">
<a href="https://alephjs.org" target="_blank">Website</a>
<span>&middot;</span>
<span></span>
<a href="https://alephjs.org/docs/get-started" target="_blank">Get Started</a>
<span>&middot;</span>
<span></span>
<a href="https://alephjs.org/docs" target="_blank">Docs</a>
<span>&middot;</span>
<span></span>
<a href="https://github.com/alephjs/aleph.js" target="_blank">Github</a>
</p>
<p className="counter">
Expand Down
3 changes: 3 additions & 0 deletions examples/default-src-directory/src/style/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ main {
}
span {
color: #999;
&:after {
content: '·';
}
}
a {
margin: 0 9px;
Expand Down
6 changes: 3 additions & 3 deletions examples/hello-world/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ export default function Home() {
<h1>Welcome to use <strong>Aleph.js</strong>!</h1>
<p className="links">
<a href="https://alephjs.org" target="_blank">Website</a>
<span>&middot;</span>
<span></span>
<a href="https://alephjs.org/docs/get-started" target="_blank">Get Started</a>
<span>&middot;</span>
<span></span>
<a href="https://alephjs.org/docs" target="_blank">Docs</a>
<span>&middot;</span>
<span></span>
<a href="https://github.com/alephjs/aleph.js" target="_blank">Github</a>
</p>
<p className="counter">
Expand Down
3 changes: 3 additions & 0 deletions examples/hello-world/style/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ main {
}
span {
color: #999;
&:after {
content: '·';
}
}
a {
margin: 0 9px;
Expand Down
6 changes: 3 additions & 3 deletions examples/hi/pages/hi/[name].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ export default function Home() {
</p>
<p className="links">
<a href="https://alephjs.org" target="_blank">Website</a>
<span>&middot;</span>
<span></span>
<a href="https://alephjs.org/docs/get-started" target="_blank">Get Started</a>
<span>&middot;</span>
<span></span>
<a href="https://alephjs.org/docs" target="_blank">Docs</a>
<span>&middot;</span>
<span></span>
<a href="https://github.com/alephjs/aleph.js" target="_blank">Github</a>
</p>
<p className="copyinfo">Built by Aleph.js in Deno v{version.deno}</p>
Expand Down
6 changes: 3 additions & 3 deletions examples/hi/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ export default function Home() {
</p>
<p className="links">
<a href="https://alephjs.org" target="_blank">Website</a>
<span>&middot;</span>
<span></span>
<a href="https://alephjs.org/docs/get-started" target="_blank">Get Started</a>
<span>&middot;</span>
<span></span>
<a href="https://alephjs.org/docs" target="_blank">Docs</a>
<span>&middot;</span>
<span></span>
<a href="https://github.com/alephjs/aleph.js" target="_blank">Github</a>
</p>
<p className="copyinfo">Built by Aleph.js in Deno v{version.deno}</p>
Expand Down
3 changes: 3 additions & 0 deletions examples/hi/style/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ main {
}
span {
color: #999;
&:after {
content: '·';
}
}
a {
margin: 0 9px;
Expand Down
6 changes: 3 additions & 3 deletions examples/spa-app/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ export default function Home() {
<h1>Welcome to use <strong>Aleph.js</strong>!</h1>
<p className="links">
<a href="https://alephjs.org" target="_blank">Website</a>
<span>&middot;</span>
<span></span>
<a href="https://alephjs.org/docs/get-started" target="_blank">Get Started</a>
<span>&middot;</span>
<span></span>
<a href="https://alephjs.org/docs" target="_blank">Docs</a>
<span>&middot;</span>
<span></span>
<a href="https://github.com/alephjs/aleph.js" target="_blank">Github</a>
</p>
<p className="counter">
Expand Down
3 changes: 3 additions & 0 deletions examples/spa-app/style/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ main {
}
span {
color: #999;
&:after {
content: '·';
}
}
a {
margin: 0 9px;
Expand Down

0 comments on commit d0dddb6

Please sign in to comment.