├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── pathmodify.js └── test ├── index.js ├── integration ├── index.js ├── test-deprecated-export.js └── test.js ├── src ├── a │ └── a.js ├── entry.js └── no-aliased-requires.js └── unit ├── index.js ├── test-deprecated-export.js └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | .working/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmm/pathmodify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmm/pathmodify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmm/pathmodify/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmm/pathmodify/HEAD/package.json -------------------------------------------------------------------------------- /pathmodify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmm/pathmodify/HEAD/pathmodify.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmm/pathmodify/HEAD/test/index.js -------------------------------------------------------------------------------- /test/integration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmm/pathmodify/HEAD/test/integration/index.js -------------------------------------------------------------------------------- /test/integration/test-deprecated-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmm/pathmodify/HEAD/test/integration/test-deprecated-export.js -------------------------------------------------------------------------------- /test/integration/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmm/pathmodify/HEAD/test/integration/test.js -------------------------------------------------------------------------------- /test/src/a/a.js: -------------------------------------------------------------------------------- 1 | module.exports = "lowercase app/a/a.js"; 2 | -------------------------------------------------------------------------------- /test/src/entry.js: -------------------------------------------------------------------------------- 1 | require('app/a/a'); 2 | -------------------------------------------------------------------------------- /test/src/no-aliased-requires.js: -------------------------------------------------------------------------------- 1 | require('./a/a'); 2 | -------------------------------------------------------------------------------- /test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmm/pathmodify/HEAD/test/unit/index.js -------------------------------------------------------------------------------- /test/unit/test-deprecated-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmm/pathmodify/HEAD/test/unit/test-deprecated-export.js -------------------------------------------------------------------------------- /test/unit/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmm/pathmodify/HEAD/test/unit/test.js --------------------------------------------------------------------------------