Skip to content
Snippets Groups Projects
Select Git revision
  • 69be28ced277780f9708bd5bed24091569fcc892
  • main default
  • hsh-MOODLE_404+
  • hsh_3.10
  • master protected
  • v1.4.7
  • v1.4.6
  • v1.4.5
  • v1.4.3
  • v1.4.1
  • v1.4
  • v1.3r2
  • v1.3
  • v1.2
14 results

index.js

Blame
  • release-rules.js 675 B
    // No release is triggered for the types commented out below.
    // Commits using these types will be incorporated into the next release.
    //
    // NOTE: Any changes here must be reflected in `CONTRIBUTING.md`.
    module.exports = [
      {breaking: true, release: 'major'},
      // {type: 'build', release: 'patch'},
      // {type: 'chore', release: 'patch'},
      // {type: 'ci', release: 'patch'},
      {type: 'docs', release: 'patch'},
      {type: 'feat', release: 'minor'},
      {type: 'fix', release: 'patch'},
      {type: 'perf', release: 'patch'},
      {type: 'refactor', release: 'patch'},
      {type: 'revert', release: 'patch'},
      {type: 'style', release: 'patch'},
      {type: 'test', release: 'patch'},
    ];