Webpack loader that automatically applies browserify transforms to dependencies via package.json browserify.transform field. Version 1.1.0 is the latest release; the project is in experimental/stable state with low release cadence. Unlike transform-loader, ify-loader reads transforms from each dependency's package.json, eliminating manual configuration for each transform in complex projects. Specifically aimed at Webpack users migrating from browserify or maintaining hybrid projects that rely on browserify transforms in node_modules.
npm install ify-loaderVerified import paths — ran on the pinned version, not inferred.
Webpack configuration applying ify-loader to node_modules and your project, with package.json browserify.transform example.
Use 'enforce: post' when applying to your own project's .js files.
If using Webpack 2+, consider using a different loader or manually converting to rule syntax.
Test with your target Webpack/Node versions; consider alternatives if issues arise.
Run npm install --save-dev ify-loader in the project root.
Downgrade to Webpack 3 or use a wrapper that polyfills loader-utils.
Change to module.rules and adjust syntax: { test: /node_modules/, use: ['ify-loader'] }.