├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── node-module-location-cache-spec.js ├── test-app.js └── test-module.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.iml 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/fast-boot/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/fast-boot/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/fast-boot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/fast-boot/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/fast-boot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/fast-boot/HEAD/package.json -------------------------------------------------------------------------------- /test/node-module-location-cache-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/fast-boot/HEAD/test/node-module-location-cache-spec.js -------------------------------------------------------------------------------- /test/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/fast-boot/HEAD/test/test-app.js -------------------------------------------------------------------------------- /test/test-module.js: -------------------------------------------------------------------------------- 1 | module.exports.a = "aa"; --------------------------------------------------------------------------------