A Webpack-compatible repackaging of Zepto 1.2.0 that exports the library as a module for use with Webpack's ProvidePlugin. This package modifies Zepto's source to include `module.exports = window.Zepto`, allowing direct `$` usage via ProvidePlugin. It addresses Ajax issues (issue 921) and is intended for projects using Webpack 1–4. Released under MIT. Last updated in 2016; no active maintenance or updates beyond Zepto 1.2.0.
npm install zepto-webpackVerified import paths — ran on the pinned version, not inferred.
Demonstrates using zepto-webpack with Webpack ProvidePlugin to make Zepto ($ and Zepto) globally available without explicit imports.
Consider using Zepto via CDN or a maintained npm package like 'zepto' with proper module bundler config.
Always use ProvidePlugin as shown in the README. Do not rely on standard module imports.
Test with Webpack 5; consider patching the package manually or switching to a maintained alternative.
Use only one Zepto wrapper; avoid mixing with other Zepto modules.
Run `npm install zepto-webpack` and ensure webpack config resolves to node_modules.
Add `new webpack.ProvidePlugin({ $: 'zepto-webpack' })` to webpack plugins array.Use ProvidePlugin as described, not direct import/require.
Ensure ProvidePlugin is used and that zepto-webpack is included in the bundle (e.g., avoid unused module warnings).
No dependency data recorded yet.