
Move Browserify source maps to a separate file using Exorcist and Grunt
If you're looking for a solution to manage and organize your Browserify source maps more effectively, grunt-exorcise is a worthy addition to your Grunt toolkit. This plugin streams the process of moving source maps to a separate file using Exorcist, ensuring that your application's performance isn't hindered by large inline source maps. It's an ideal fit for developers who want to streamline their build process while maintaining a clean structure.
This plugin specifically requires Grunt 0.4.x, which makes it essential for those who are already familiar with Grunt's configuration and usage. It’s straightforward to set up and offers a range of options that can be tailored to suit your project needs.
bundleDest allows you to specify where the new bundle is placed with the inline source map removed.strict option to fail the build if the source map is missing, ensuring that you catch issues early.url, root, and base directly to Exorcist for more control over your source map configuration.
Grunt is a popular JavaScript task runner that automates repetitive tasks like minification, compilation, and testing, allowing developers to focus on writing code.