1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-21 08:31:31 +02: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);
};