Skip to content
This repository has been archived by the owner on Jan 3, 2018. It is now read-only.

dcousineau/force-case-sensitivity-webpack-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Abandoning Project

I clearly never really paid attention to this and in merging PR's I kept hitting performance issues. Urthen/case-sensitive-paths-webpack-plugin is siginficantly more well maintained and active. Please use this instead.

force-case-sensitivity-webpack-plugin

This is a plugin for Webpack that forces import statements to match case with the target file on the disk.

Issues arise when developers (like myself) work on OSX machines with case-insensitive file systems and deploy to Linux servers that do have case-sensitive file systems. This plugin will break the build when a difference in case is discovered:

Module not found: Error: ForceCaseSensitivityPlugin: 'ThisFile.js' does not match the corresponding file on disk 'thisfile.js'

Install

npm install --save-dev force-case-sensitivity-webpack-plugin

Usage

var ForceCaseSensitivityPlugin = require('force-case-sensitivity-webpack-plugin');

var webpackConfig = {
    plugins: [
        new ForceCaseSensitivityPlugin()
    ]
    // other webpack config ...
}

Thanks & Credit

Special thanks and credit to Alexandre Kirszenberg who's gist I lifted and formed into this npm module for re-usability.