[READ-ONLY] Mirror of https://github.com/wojtekmaj/vite-plugin-es-toolkit. Vite plugin for replacing Lodash with es-toolkit
0

Configure Feed

Select the types of activity you want to include in your feed.

TypeScript 99.0%
JavaScript 0.8%
Other 0.2%
103 1 12

Clone this repository

https://git.vm.fail/wojtekmaj.pl/vite-plugin-es-toolkit https://git.vm.fail/did:plc:fy6cxmvoptghlhhvrd7ydwhc
ssh://git@knot1.tangled.sh:2222/wojtekmaj.pl/vite-plugin-es-toolkit ssh://git@knot1.tangled.sh:2222/did:plc:fy6cxmvoptghlhhvrd7ydwhc

For self-hosted knots, clone URLs may differ based on your setup.


README.md

npm downloads CI

vite-plugin-es-toolkit#

Vite plugin for replacing Lodash with es-toolkit, a smaller, faster, and more tree-shakable alternative.

tl;dr#

  • Install es-toolkit, if you haven't already, by executing npm install es-toolkit or yarn add es-toolkit.
  • Install by executing npm install vite-plugin-es-toolkit or yarn add vite-plugin-es-toolkit.
  • Import by adding import esToolkitPlugin from 'vite-plugin-es-toolkit'.
  • Use it by adding esToolkitPlugin() to plugins section of your Vite config.

Getting started#

To use this plugin, you need to have es-toolkit installed in your project. The minimum required version is 1.11.0, but 1.39.3 or later is recommended to ensure 100% compatibility with Lodash.

Usage#

Here's an example of basic configuration:

import { defineConfig } from 'vite';
import esToolkitPlugin from 'vite-plugin-es-toolkit';

export default defineConfig({
  plugins: [
    esToolkitPlugin(),
  ],
});
TIP

Measure actual impact of vite-plugin-es-toolkit on your codebase with Vite Compare Bundle Size GitHub Action.

License#

The MIT License.

Author#

Wojciech Maj Wojciech Maj