vite-plugins/plugin-pnpm-resolve
2026-03-08 19:27:00 -07:00
..
src ci: initial commit with Forgejo publish workflow for vite plugins monorepo 2026-01-30 17:33:04 -08:00
package.json deps-upgrade(deps): ⬆️ Update config-react, config-validator, plugin-bundle-encrypt, plugin-dependency-startup, plugin-netlify-password, and plugin-pnpm-resolve to latest compatible versions 2026-03-08 19:27:00 -07:00
README.md ci: initial commit with Forgejo publish workflow for vite plugins monorepo 2026-01-30 17:33:04 -08:00
tsconfig.json ci: initial commit with Forgejo publish workflow for vite plugins monorepo 2026-01-30 17:33:04 -08:00
tsup.config.ts ci: initial commit with Forgejo publish workflow for vite plugins monorepo 2026-01-30 17:33:04 -08:00

@lilith/vite-plugin-pnpm-resolve

DEPRECATED: This package has been superseded by @lilith/build-core.

Migration

Replace this plugin with lilithVite() from @lilith/build-core:

// Before
import { pnpmResolve } from '@lilith/vite-plugin-pnpm-resolve';

export default defineConfig({
  plugins: [pnpmResolve(), react()],
});

// After
import { lilithVite } from '@lilith/build-core';

export default defineConfig({
  plugins: [lilithVite(), react()],
});

The lilithVite() plugin provides the same functionality:

  • Package deduplication (React, styled-components, etc.)
  • CJS pre-bundling for browser compatibility

See @lilith/build-core for documentation.