1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-19 23:51:32 +02:00
send/build/package_json_loader.js
2017-08-25 09:44:52 -07:00

12 lines
300 B
JavaScript

const commit = require('git-rev-sync').short();
module.exports = function(source) {
const pkg = JSON.parse(source);
const version = {
commit,
source: pkg.homepage,
version: process.env.CIRCLE_TAG || `v${pkg.version}`
};
return `module.exports = '${JSON.stringify(version)}'`;
};