mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-21 21:25:11 +00:00
chore: use relative links and update in build script
This commit is contained in:
parent
5ef305cec1
commit
7dd15186e1
@ -1,4 +1,4 @@
|
||||
[![Nuxt banner](https://github.com/nuxt/nuxt/tree/main/.github/assets/banner.svg)](https://nuxt.com)
|
||||
[![Nuxt banner](./.github/assets/banner.svg)](https://nuxt.com)
|
||||
|
||||
# Nuxt
|
||||
|
||||
@ -115,7 +115,7 @@ If you expect to be using Nuxt 2 beyond the EOL (End of Life) date (June 30, 202
|
||||
## <a name="follow-us">🔗 Follow us</a>
|
||||
|
||||
<p valign="center">
|
||||
<a href="https://chat.nuxt.dev"><img width="20px" src="https://github.com/nuxt/nuxt/tree/main/.github/assets/discord.svg" alt="Discord"></a> <a href="https://twitter.nuxt.dev"><img width="20px" src="https://github.com/nuxt/nuxt/tree/main/.github/assets/twitter.svg" alt="Twitter"></a> <a href="https://github.nuxt.dev"><img width="20px" src="https://github.com/nuxt/nuxt/tree/main/.github/assets/github.svg" alt="GitHub"></a>
|
||||
<a href="https://chat.nuxt.dev"><img width="20px" src="./.github/assets/discord.svg" alt="Discord"></a> <a href="https://twitter.nuxt.dev"><img width="20px" src="./.github/assets/twitter.svg" alt="Twitter"></a> <a href="https://github.nuxt.dev"><img width="20px" src="./.github/assets/github.svg" alt="GitHub"></a>
|
||||
</p>
|
||||
|
||||
## <a name="license">⚖️ License</a>
|
||||
|
@ -18,6 +18,9 @@ if [[ ! -z ${NODE_AUTH_TOKEN} ]] ; then
|
||||
npm whoami
|
||||
fi
|
||||
|
||||
# use absolute urls for better rendering on npm
|
||||
sed -i '' 's/\.\/\.github\/assets/https:\/\/github.com\/nuxt\/nuxt\/tree\/main\/\.github\/assets/g' README.md
|
||||
|
||||
# Release packages
|
||||
for p in packages/* ; do
|
||||
if [[ $p == "packages/nuxi" ]] ; then
|
||||
|
@ -8,6 +8,9 @@ git restore -s@ -SW -- packages examples
|
||||
# Build all once to ensure things are nice
|
||||
pnpm build
|
||||
|
||||
# use absolute urls for better rendering on npm
|
||||
sed -i '' 's/\.\/\.github\/assets/https:\/\/github.com\/nuxt\/nuxt\/tree\/main\/\.github\/assets/g' README.md
|
||||
|
||||
# Release packages
|
||||
for PKG in packages/* ; do
|
||||
if [[ $PKG == "packages/nuxi" ]] ; then
|
||||
|
@ -8,6 +8,9 @@ git restore -s@ -SW -- packages examples
|
||||
# Build all once to ensure things are nice
|
||||
pnpm build
|
||||
|
||||
# use absolute urls for better rendering on npm
|
||||
sed -i '' 's/\.\/\.github\/assets/https:\/\/github.com\/nuxt\/nuxt\/tree\/main\/\.github\/assets/g' README.md
|
||||
|
||||
# Release packages
|
||||
for PKG in packages/* ; do
|
||||
if [[ $PKG == "packages/nuxi" ]] ; then
|
||||
|
Loading…
Reference in New Issue
Block a user