🚨 Breaking Changes
- Rename package to
vitepress-openapi
- by @enzonotario in #70 (317a6)
View changes on GitHub
Migration Guide
- Uninstall the old package:
npm uninstall vitepress-theme-openapi
pnpm uninstall vitepress-theme-openapi
yarn remove vitepress-theme-openapi
bun uninstall vitepress-theme-openapi
- Install the new package:
npm install vitepress-openapi
pnpm add vitepress-openapi
yarn add vitepress-openapi
bun install vitepress-openapi
- Replace all occurrences of
vitepress-theme-openapi
withvitepress-openapi
in your project:
# Replace all occurrences of `vitepress-theme-openapi` with `vitepress-openapi` in your project
find . -type f -exec sed -i 's/vitepress-theme-openapi/vitepress-openapi/g' {} +