1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-21 08:31:31 +02:00
send/build/version_loader.js

6 lines
137 B
JavaScript
Raw Normal View History

2017-12-05 21:45:36 +01:00
const version = require('../package.json').version;
module.exports = function(source) {
return source.replace('VERSION', version);
};