diff --git a/.github/workflows/ci-dev.yml b/.github/workflows/ci-dev.yml index 2b5e7c270b..e05f1f704d 100644 --- a/.github/workflows/ci-dev.yml +++ b/.github/workflows/ci-dev.yml @@ -21,6 +21,9 @@ jobs: os: [ubuntu-latest] # macos-latest, windows-latest node: [18] + env: + NUXT_GITHUB_TOKEN: ${{ secrets.NUXT_GITHUB_TOKEN }} + steps: - uses: actions/setup-node@v4 with: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 357cfa5f75..1de84d185a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,9 @@ jobs: os: [ubuntu-latest] # macos-latest, windows-latest node: [18] + env: + NUXT_GITHUB_TOKEN: ${{ secrets.NUXT_GITHUB_TOKEN }} + steps: - uses: actions/setup-node@v4 with: diff --git a/.release-it.json b/.release-it.json index 15cd534714..fd741a96e5 100644 --- a/.release-it.json +++ b/.release-it.json @@ -7,6 +7,7 @@ }, "github": { "release": true, + "releaseName": "v${version}", "web": true }, "hooks": { diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..50aead7325 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "prettier.enable": false +} diff --git a/docs/.env.example b/docs/.env.example index b0342bcce9..8856c6ef66 100644 --- a/docs/.env.example +++ b/docs/.env.example @@ -1,6 +1,8 @@ -# To link Nuxt UI Pro in development +# Specify the path of @nuxt/ui-pro locally NUXT_UI_PRO_PATH= -# To use Nuxt UI Pro in production -NUXT_UI_PRO_TOKEN= +# Production token for @nuxt/ui-pro, purchase on https://ui.nuxt.com/pro/purchase +NUXT_UI_PRO_LICENSE= # Used when pre-rendering the docs for dynamic OG images NUXT_PUBLIC_SITE_URL= +# Used to fetch `nuxt/ui-pro` docs content +NUXT_GITHUB_TOKEN= diff --git a/docs/app.vue b/docs/app.vue index 67802987fa..276b3a19cf 100644 --- a/docs/app.vue +++ b/docs/app.vue @@ -1,16 +1,16 @@