1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-11-11 05:32:40 +01:00
send/build/version_loader.js
2017-12-05 12:51:37 -08:00

6 lines
137 B
JavaScript

const version = require('../package.json').version;
module.exports = function(source) {
return source.replace('VERSION', version);
};