This package has been deprecated

Author message:

This package has been deprecated

danger-plugin-dangerfile-builder

0.2.1 • Public • Published

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.

Readme

Keywords

Package Sidebar

Install

npm i danger-plugin-dangerfile-builder

Weekly Downloads

2

Version

0.2.1

License

MIT

Unpacked Size

50.3 kB

Total Files

41

Last publish

Collaborators

  • sogame