mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-21 21:25:11 +00:00
chore: include central readme/licence when publishing individual packages (#18421)
This commit is contained in:
parent
5518e26455
commit
3c715ac729
2
.gitignore
vendored
2
.gitignore
vendored
@ -3,6 +3,8 @@ node_modules
|
||||
jspm_packages
|
||||
|
||||
package-lock.json
|
||||
packages/*/README.md
|
||||
packages/*/LICENSE
|
||||
*/**/yarn.lock
|
||||
/.yarn
|
||||
|
||||
|
@ -7,6 +7,54 @@ description: Some specific points about contributions to the nuxt/nuxt repositor
|
||||
|
||||
Once you've read the [general contribution guide](/docs/community/contribution), here are some specific points to make about contributions to the `nuxt/nuxt` repository.
|
||||
|
||||
## Monorepo Guide
|
||||
|
||||
### `packages/kit`
|
||||
|
||||
> Toolkit for authoring Nuxt Modules
|
||||
|
||||
- Published as: `@nuxt/kit`
|
||||
- [Learn more about this package](/docs/guide/going-further/kit).
|
||||
|
||||
### `packages/nuxi`
|
||||
|
||||
> Nuxt Command Line Interface
|
||||
|
||||
- Published as: `nuxi`
|
||||
- [Learn more about this package](/docs/api/commands/add).
|
||||
|
||||
### `packages/nuxt`
|
||||
|
||||
> The core of Nuxt 3
|
||||
|
||||
- Published as: `nuxt`
|
||||
|
||||
### `packages/schema`
|
||||
|
||||
> Cross-version Nuxt typedefs and defaults
|
||||
|
||||
- Published as: `@nuxt/schema`
|
||||
|
||||
### `packages/test-utils`
|
||||
|
||||
> Test utilities for Nuxt.
|
||||
|
||||
- Published as: `@nuxt/test-utils`
|
||||
|
||||
### `packages/vite`
|
||||
|
||||
> The [Vite](https://vitejs.dev) bundler for Nuxt 3.
|
||||
|
||||
- Published as: `@nuxt/vite-builder`
|
||||
- [Learn more about this package](/docs/api/configuration/nuxt-config#vite).
|
||||
|
||||
### `packages/webpack`
|
||||
|
||||
> The [webpack](https://webpack.js.org) bundler for Nuxt 3
|
||||
|
||||
- Published as: `@nuxt/webpack-builder`
|
||||
- [Learn more about this package](/docs/api/configuration/nuxt-config#webpack-1).
|
||||
|
||||
## Using the Playground
|
||||
|
||||
While working on a PR, you will likely want to check if your changes are working correctly.
|
||||
|
@ -1,5 +0,0 @@
|
||||
# Nuxt Kit
|
||||
|
||||
> Toolkit for authoring Nuxt Modules
|
||||
|
||||
Learn more about this package: <https://nuxt.com/docs/guide/going-further/kit>
|
@ -1,5 +0,0 @@
|
||||
# Nuxi
|
||||
|
||||
> Nuxt Command Line Interface
|
||||
|
||||
Learn more about this package: <https://nuxt.com/docs/api/commands/add>
|
@ -1,5 +0,0 @@
|
||||
# Nuxt 3
|
||||
|
||||
> The core of Nuxt 3
|
||||
|
||||
Learn more about this package: <https://nuxt.com>
|
@ -1,3 +0,0 @@
|
||||
# Nuxt Schema
|
||||
|
||||
> Cross-version Nuxt typedefs and defaults
|
@ -1,3 +0,0 @@
|
||||
# Nuxt Test Utils
|
||||
|
||||
Test utilities for Nuxt.
|
@ -1,5 +0,0 @@
|
||||
# Nuxt Vite Builder
|
||||
|
||||
> [Vite](https://vitejs.dev) bundler for Nuxt 3.
|
||||
|
||||
Learn more about this package: <https://nuxt.com/docs/api/configuration/nuxt-config#vite>
|
@ -1,5 +0,0 @@
|
||||
# Nuxt Webpack Builder
|
||||
|
||||
> The [Webpack](https://webpack.js.org) bundler for Nuxt 3
|
||||
|
||||
Learn more about this package: <https://nuxt.com/docs/api/configuration/nuxt-config#webpack-1>
|
@ -20,6 +20,8 @@ fi
|
||||
for p in packages/* ; do
|
||||
pushd $p
|
||||
echo "Publishing $p"
|
||||
cp ../../LICENSE .
|
||||
cp ../../README.md .
|
||||
pnpm publish --access public --no-git-checks
|
||||
popd
|
||||
done
|
||||
|
@ -16,6 +16,8 @@ for PKG in packages/* ; do
|
||||
TAG="rc"
|
||||
fi
|
||||
echo "⚡ Publishing $PKG with tag $TAG"
|
||||
cp ../../LICENSE .
|
||||
cp ../../README.md .
|
||||
pnpm publish --access public --no-git-checks --tag $TAG
|
||||
popd > /dev/null
|
||||
done
|
||||
|
@ -13,6 +13,8 @@ for PKG in packages/* ; do
|
||||
pushd $PKG
|
||||
TAG="latest"
|
||||
echo "⚡ Publishing $PKG with tag $TAG"
|
||||
cp ../../LICENSE .
|
||||
cp ../../README.md .
|
||||
pnpm publish --access public --no-git-checks --tag $TAG
|
||||
popd > /dev/null
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user