@nuxt/docs-nightly 4.2.0-29350737.ca3347b3 → 5.0.0-29353861.85838dfd
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -221,19 +221,23 @@ You can run all the codemods mentioned in this guide using the following `codemo
|
|
|
221
221
|
::code-group
|
|
222
222
|
|
|
223
223
|
```bash [npm]
|
|
224
|
-
|
|
224
|
+
# Using pinned version due to https://github.com/codemod-com/codemod/issues/1710
|
|
225
|
+
npx codemod@0.18.7 nuxt/4/migration-recipe
|
|
225
226
|
```
|
|
226
227
|
|
|
227
228
|
```bash [yarn]
|
|
228
|
-
|
|
229
|
+
# Using pinned version due to https://github.com/codemod-com/codemod/issues/1710
|
|
230
|
+
yarn dlx codemod@0.18.7 nuxt/4/migration-recipe
|
|
229
231
|
```
|
|
230
232
|
|
|
231
233
|
```bash [pnpm]
|
|
232
|
-
|
|
234
|
+
# Using pinned version due to https://github.com/codemod-com/codemod/issues/1710
|
|
235
|
+
pnpm dlx codemod@0.18.7 nuxt/4/migration-recipe
|
|
233
236
|
```
|
|
234
237
|
|
|
235
238
|
```bash [bun]
|
|
236
|
-
|
|
239
|
+
# Using pinned version due to https://github.com/codemod-com/codemod/issues/1710
|
|
240
|
+
bun x codemod@0.18.7 nuxt/4/migration-recipe
|
|
237
241
|
```
|
|
238
242
|
|
|
239
243
|
::
|