mirror of
https://github.com/mozilla/send.git
synced 2026-01-14 07:57:53 -05:00
12 lines
300 B
JavaScript
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)}'`;
|
|
};
|