Awesome
No-bundle for Vite
ā” Use Vite for building without the bundling part
<div align="center"> </div>š§° Useful for monorepos
š¦ Can be consumed by native ESM tooling
š·āāļø Lets consumers deep import specific files
ā You control your own code splitting
With the rise in monorepos and native ESM support, it is becoming increasingly popular to release libraries that are meant to be bundled by the consuming application or even served directly. The support for library mode in Vite is still lacking when it comes to producing unbundled code, so this plugin fills in some of those gaps. š
Installation
From v4,
vite-plugin-no-bundle
requires Vite 5.
This plugin is designed to work with Vite in a development environment using Node.js. You can install this package using npm, Yarn, or pnpm using a command similar to this example for npm:
npm install -D vite-plugin-no-bundle
Usage
š In accordance with Vite plugin convention, we provide a default export function that takes in a bunch of customization options.
š You can find the complete list of options below! š
import { defineConfig } from 'vite';
import noBundlePlugin from 'vite-plugin-no-bundle';
export default defineConfig({
build: {
lib: {
formats: ['es'],
entry: 'src/index.ts',
},
},
plugins: [noBundlePlugin({ copy: '**/*.css' })],
});
Here's an example project tree using ā the example vite.config.ts
from above:
.
āāā dist/
ā āāā index.js
ā āāā card.css
ā āāā table.css
ā āāā createTable.js
ā āāā fetchData.js
āāā src/
ā āāā index.ts
ā āāā card.css
ā āāā table.css
ā āāā createTable.js
ā āāā fetchData.ts
āāā package.json
āāā package-lock.json
āāā tsconfig.json
āāā vite.config.ts
ā ļø Keep in mind that non-ESM output (such as CommonJS) will probably prevent the
consumer from resolving static assets. Vite relies on import.meta
for getting
a URL's to static assets, which is only valid when using ESM.
Options
interface VitePluginNoBundleOptions {
copy?: string | string[];
internal?: string | string[];
root?: string; //= 'src'
}
-
copy
: One or more globs for matching files that should not be handled by Vite, but instead be marked as external and copied to the output directory as is. This is especially useful for static assets such as.css
, which are otherwise inlined as raw strings when using Vite in library mode (vitejs/vite#4454). -
internal
: One or more globs for matching files that should not be automatically marked as external. This can be used to tell the plugin to not handle certain files and leave them up to other plugins and resolvers. -
root
: Exposesoutput.preserveModulesRoot
, which controls which part of the full path to exclude when putting files into thedist/
folder. Make sure to change this if you're using something other thansrc/
for your source code.
Customizing file names
In previous versions of this plugin, it was possible to customize the generated
file names via the fileNames
option. This has been removed in favor of Vite's
own build.lib.fileName
option. By default, this plugin uses [name]
as the
fileName
, resulting in files keeping their original name with the appropriate
extension appended based on module format. This change was implemented to allow
multiple module formats to be emitted using this plugin. Example configuration:
import { defineConfig } from 'vite';
import noBundlePlugin from 'vite-plugin-no-bundle';
export default defineConfig({
build: {
lib: {
formats: ['es', 'cjs'], // Generate multiple formats without bundling
fileName: 'my-lib-[name]', // Extension automatically determined by format
entry: 'src/index.ts',
},
},
plugins: [noBundlePlugin({ copy: '**/*.css' })],
});
Use cases
You can use this plugin to force Vite to leave your custom fine-tuned file structure alone. This is especially useful when consuming just part of a module directly via a deep import. For instance, if you have two Vite projects, one library and one app, the library could use this plugin so that the app is able to bundle everything together on its own terms. š
Another good use-case is serving individual files via an HTTP server. Sometimes you just want a plain TS ā”ļø JS file conversion (with some extra features). This plugin lets you do just that, no magic required. š§āāļø
š Browse Sample Configurations - For practical examples,
explore the samples
folder.
Development
This is a fairly basic Vite plugin. The only compilation step is to run
npm run build
which uses tsup. Sample configurations serve as test
cases for different plugin scenarios and can be run using npm test
.
If you're interested in learning more about Vite plugins and how they work, check out the Plugin API | Vite page!
<!-- prettier-ignore-start --> <!-- prettier-ignore-end -->