danger-plugin-dangerfile-builderdeprecated

Dangerfile Builder is a Danger JS plugin containing a set of common validations and utilities, build to make it easy to start using Danger JS.

Usage no npm install needed!

<script type="module">
  import dangerPluginDangerfileBuilder from 'https://cdn.skypack.dev/danger-plugin-dangerfile-builder';
</script>

README

danger-plugin-dangerfile-builder

Dangerfile Builder is a Danger JS plugin containing a set of common validations and utilities, build to make it easy to start using Danger JS.

Build Status SonarCloud Coverage npm version Greenkeeper badge

Installation

npm install danger-plugin-dangerfile-builder --save-dev

Usage

Edit your dangerfile.js to import the required validations and utilities, and buil the contents using those:

const { warn } = require('danger');
const {
  jsLockfile,
  commonValidJson,
  inCommitGrep,
} require('danger-plugin-dangerfile-builder');

jsLockfile();

commonValidJson();

if (inCommitGrep(/.+\.log$/)) {
  warn('Do not commit log files');
}

Validations and utilities

Find here the documentation of all validations and utilities provided by Dangerfile Builder:

Changelog

See the release history in CHANGELOG.md.

Contributing

To contribute please see CONTRIBUTING.md.