bigbuffet-rw/webpack/loaders/git-loader.js

9 lines
292 B
JavaScript
Raw Normal View History

2021-03-30 13:40:58 -07:00
const { resolve } = require('path');
// Forces recompile whenever the current commit changes
// Useful for generating the version hash in the UI
module.exports = function(source, map) {
this.addDependency(resolve(__dirname, '../../.git/logs/HEAD'));
this.callback(null, source, map);
};