Skip to content

Commit 991bfda

Browse files
committedJul 15, 2024·
fix!: migrate to @nuxtjs/robots
1 parent f2a7e61 commit 991bfda

File tree

12 files changed

+435
-382
lines changed

12 files changed

+435
-382
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ With powerful APIs built for fully dynamic sites and zero-config defaults for st
3939
## Modules
4040

4141
- 📖 [@nuxtjs/sitemap](https://github.com/nuxt-modules/sitemap) - Sitemap.xml Support
42-
- 🤖 [nuxt-simple-robots](https://github.com/harlan-zw/nuxt-simple-robots) - Manage site crawling
42+
- 🤖 [@nuxtjs/robots](https://github.com/nuxt-modules/robots) - Manage site crawling
4343
- 🔎 [nuxt-schema-org](https://github.com/harlan-zw/nuxt-schema-org) - Generate Schema.org JSON-LD for SEO
4444
-[nuxt-seo-experiments](https://github.com/harlan-zw/nuxt-seo-experiments) - Experimental SEO meta features
4545
- 🖼️ [nuxt-og-image](https://github.com/nuxt-modules/og-image) - Generate dynamic social share images

‎docs/content/0.nuxt-seo/2.guides/0.using-the-modules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Since Nuxt SEO installs and enables modules for you, you may run into a situatio
6868
The modules have these config keys:
6969
- `nuxt-og-image` - `ogImage`
7070
- `@nuxtjs/sitemap` - `sitemap`
71-
- `nuxt-simple-robots` - `robots`
71+
- `@nuxtjs/robots` - `robots`
7272
- `nuxt-seo-experiments` - `seoExperiments`
7373
- `nuxt-schema-org` - `schemaOrg`
7474
- `nuxt-link-checker` - `linkChecker`

‎docs/content/1.robots/1.getting-started/0.features.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: 'Nuxt Simple Robots Features'
3-
description: 'Get started with nuxt-simple-robots by installing the dependency to your project.'
2+
title: 'Nuxt Robots Features'
3+
description: 'Nuxt Robots manages the robots crawling your site with minimal config and best practice defaults.'
44
navigation:
55
title: 'Features'
66
---
77

8-
Nuxt Simple Robots manages the robots crawling your site with minimal config and best practice defaults.
8+
Nuxt Robots manages the robots crawling your site with minimal config and best practice defaults.
99

1010
## 🤖 Robots.txt Config
1111

‎docs/content/1.robots/1.getting-started/0.installation.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: 'Install Nuxt Simple Robots'
3-
description: 'Get started with nuxt-simple-robots by installing the dependency to your project.'
2+
title: 'Install Nuxt Robots'
3+
description: 'Get started with Nuxt Robots by installing the dependency to your project.'
44
navigation:
55
title: 'Installation'
66
---
@@ -9,10 +9,10 @@ Using [Nuxt SEO](/nuxt-seo/getting-started/installation)? This module is already
99

1010
## Setup
1111

12-
1. Install `nuxt-simple-robots` dependency to your project:
12+
1. Install `nuxt-robots` dependency to your project:
1313

1414
```bash
15-
npx nuxi@latest module add simple-robots
15+
npx nuxi@latest module add robots
1616
```
1717

1818
## Staging / Testing Environments

‎docs/content/1.robots/3.api/1.config.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Nuxt Config
3-
description: Learn how to configure nuxt-simple-robots using nuxt.config.
3+
description: Learn how to configure Nuxt Robots using nuxt.config.
44
---
55

66
## `enabled`
@@ -120,7 +120,7 @@ When set to `false`, no merging will occur.
120120

121121
Blocks some non-SEO bots from crawling your site. This is not a replacement for a full-blown bot management solution, but it can help to reduce the load on your server.
122122

123-
See [const.ts](https://github.com/harlan-zw/nuxt-simple-robots/blob/main/src/const.ts#L6) for the list of bots that are blocked.
123+
See [const.ts](https://github.com/nuxt-modules/robots/blob/main/src/const.ts#L6) for the list of bots that are blocked.
124124

125125
```ts
126126
export default defineNuxtConfig({
@@ -147,9 +147,9 @@ Enables debug logs and a debug endpoint.
147147
Control the module credit comment in the generated robots.txt file.
148148

149149
```txt
150-
# START nuxt-simple-robots (indexable) <- credits
150+
# START nuxt-robots (indexable) <- credits
151151
...
152-
# END nuxt-simple-robots <- credits
152+
# END nuxt-robots <- credits
153153
```
154154

155155
```ts

‎docs/content/1.robots/4.releases/0.v3.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export default defineNuxtConfig({
5454

5555
Blocks some non-SEO bots from crawling your site. This is not a replacement for a full-blown bot management solution, but it can help to reduce the load on your server.
5656

57-
See [const.ts](https://github.com/harlan-zw/nuxt-simple-robots/blob/main/src/const.ts#L6) for the list of bots that are blocked.
57+
See [const.ts](https://github.com/nuxt-modules/robots/blob/main/src/const.ts#L6) for the list of bots that are blocked.
5858

5959
```ts
6060
export default defineNuxtConfig({
@@ -79,9 +79,9 @@ This has been changed to include all `disallow` paths for the `*` user-agent by
7979
Control the module credit comment in the generated robots.txt file.
8080

8181
```txt
82-
# START nuxt-simple-robots (indexable) <- credits
82+
# START nuxt-robots (indexable) <- credits
8383
...
84-
# END nuxt-simple-robots <- credits
84+
# END nuxt-robots <- credits
8585
```
8686

8787
```ts

‎docs/content/1.robots/4.releases/1.v4.md

+26-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,32 @@ title: v4.0.0
33
description: Release notes for Nuxt Simple Robots v4.0.0.
44
---
55

6+
## Nuxt Simple Robots is now Nuxt Robots
7+
8+
In a [discussion](https://github.com/nuxt-modules/robots/issues/116) with the team and the community, we have decided to migrate `nuxt-simple-robots` into the `@nuxtjs/robots` module.
9+
10+
This will allow me to better maintain the module and provide a more consistent experience across the Nuxt ecosystem.
11+
12+
To upgrade simply replace the dependency in `package.json` and update your nuxt.config. Other changes are below.
13+
14+
```diff
15+
- 'nuxt-simple-robots'
16+
+ '@nuxtjs/robots'
17+
```
18+
619
## :icon{name="i-noto-rocket"} Features
720

21+
### useRobotsRule()
22+
23+
A new Nuxt composable [useRobotsRule()](/robots/api/use-robots-rule) has been introduced to allow you to access and modify the current robots rule for the current route.
24+
25+
```ts
26+
import { useRobotsRule } from '#imports'
27+
28+
const rule = useRobotsRule()
29+
// Ref<'noindex, nofollow'>
30+
```
31+
832
### Robots.txt validation :icon{name="i-noto-check-mark-button"}
933

1034
When loading in a `robots.txt` file, the module will now validate the file to ensure each of the `disallow` and `allow` paths are valid.
@@ -83,10 +107,10 @@ In this version the new hook Nitro hook as introduced `robots:config`. This hook
83107
will let you override the robots.txt data as a JavaScript object, instead of a string.
84108

85109
Like-wise you can now re-use any of the internal functions to parse, validate and generate
86-
robots.txt data using the `nuxt-simple-robots/util` export.
110+
robots.txt data using the `@nuxtjs/robots/util` export.
87111

88112
```ts
89-
import { parseRobotsTxt } from 'nuxt-simple-robots/util'
113+
import { parseRobotsTxt } from '@nuxtjs/robots/util'
90114

91115
export default defineNitroPlugin((nitroApp) => {
92116
nitroApp.hooks.hook('robots:config', async (ctx) => {

‎docs/content/2.sitemap/1.integrations/2.robots.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Nuxt Simple Robots
33
description: How to use the Nuxt Simple Robots module with Nuxt Content.
44
---
55

6-
The [nuxt-simple-robots](https://github.com/harlan-zw/nuxt-simple-robots) module is useful for creating a dynamic runtime robots.txt file.
6+
The [@nuxtjs/robots](https://github.com/nuxt-modules/robots) module is useful for creating a dynamic runtime robots.txt file.
77

88
## Setup
99

‎docs/utils/data.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ export const SiteConfigModule: NuxtSeoModule = {
5858
} as const
5959

6060
export const RobotsModule = {
61-
id: 'simple-robots',
61+
id: 'robots',
6262
slug: 'robots',
6363
label: 'Robots',
64-
fullLabel: 'Nuxt Simple Robots',
64+
fullLabel: 'Nuxt Robots',
6565
icon: 'i-carbon-bot',
6666
description: 'Tame the robots crawling and indexing your site with ease.',
6767
tag: {
@@ -71,9 +71,9 @@ export const RobotsModule = {
7171
date: new Date('2023-12-14'),
7272
},
7373
to: '/robots/getting-started/installation',
74-
repo: 'harlan-zw/nuxt-simple-robots',
74+
repo: 'nuxt-modules/robots',
7575
routeRules: {
76-
site: { name: 'Nuxt Simple Robots', description: 'Tame the robots crawling and indexing your site with ease.' },
76+
site: { name: 'Nuxt Robots', description: 'Tame the robots crawling and indexing your site with ease.' },
7777
ogImage: { icon: 'i-carbon-bot' },
7878
},
7979
} as const

‎package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@
4343
},
4444
"dependencies": {
4545
"@nuxt/kit": "^3.12.3",
46-
"@nuxtjs/sitemap": "^5.3.2",
46+
"@nuxtjs/robots": "^4.0.0-rc.22",
47+
"@nuxtjs/sitemap": "^5.3.4",
4748
"defu": "^6.1.4",
4849
"nuxt-link-checker": "^3.0.0-rc.12",
4950
"nuxt-og-image": "^3.0.0-rc.61",
5051
"nuxt-schema-org": "^3.3.8",
5152
"nuxt-seo-experiments": "^4.0.0-rc.13",
52-
"nuxt-simple-robots": "^4.0.0-rc.20",
5353
"nuxt-site-config": "^2.2.14",
5454
"nuxt-site-config-kit": "^2.2.14",
5555
"pkg-types": "^1.1.3",
@@ -68,7 +68,7 @@
6868
"nitropack": "^2.9.7",
6969
"nuxt": "^3.12.3",
7070
"typescript": "5.4.5",
71-
"vitest": "^2.0.2"
71+
"vitest": "^2.0.3"
7272
},
7373
"resolutions": {
7474
"shiki": "1.10.1"

‎pnpm-lock.yaml

+384-355
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export interface ModuleOptions {
5656
}
5757

5858
const Modules = [
59-
'nuxt-simple-robots',
59+
'@nuxtjs/robots',
6060
'@nuxtjs/sitemap',
6161
'nuxt-og-image',
6262
'nuxt-schema-org',

0 commit comments

Comments
 (0)
Please sign in to comment.