www.gusucode.com > Elgg PHP开源SNS系统 V1.12.5源码程序 > elgg-1.12.5/.scripts/write-changelog.js

    #!/usr/bin/env node

var pkg = require('../composer.json');
var fs = require('fs');
var changelog = require('elgg-conventional-changelog');

changelog({
  version: pkg.version,
  repository: 'https://github.com/Elgg/Elgg',
  types: {
      feature: 'Features',
      perf: 'Performance',
      docs: 'Documentation',
      fix: 'Bug Fixes',
      deprecate: 'Deprecations',
      breaks: 'Breaking Changes',
  }
}, function(err, log) {
  if (err) throw new Error(err);
  fs.writeFileSync('CHANGELOG.md', log);
});