├── .gitignore ├── README.md ├── index.js ├── license.txt ├── package.json └── test └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/webpack-git-hash/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/webpack-git-hash/HEAD/index.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/webpack-git-hash/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/webpack-git-hash/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/webpack-git-hash/HEAD/test/test.js --------------------------------------------------------------------------------