New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@nielsen-oss/pact-manifest-cli

Package Overview
Dependencies
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nielsen-oss/pact-manifest-cli

Node.js CLI tool to manage a pact manifest

latest
npmnpm
Version
1.2.0
Version published
Maintainers
3
Created
Source

pact-manifest-cli

A Node.js CLI tool to generate a pact manifest file for existing pact contracts, and publish them to a broker based on a tag.

Installation

yarn add pact-manifest-cli

Usage

Generate a pact manifest

$ cd backend-api/
$ pact-manifest-cli generate --pact-files-path "test/pacts/*.json" --manifest-file /tmp/pact-manifest.json

Command line options for generate option:

OptionDescriptionExample value
--base-path [base-path]A directory's base path for the pact files location. Defaults to current working dir.~/backend-api
--pact-files-path <pact-files-path>A directory relative to --base-path option, to find pact files`test/pacts/*.json
--manifest-file <manifest-file>The filename (or full path) to save the pact manifest file/tmp/pact-manifest.json
--pact-default-tag [pact-default-tag]The tag to assign by default to pact files when submitting them to broker. Defaults to "develop".dev

Publish a pact manifest to a broker

$ cd backend-api/
$ pact-manifest-cli publish --manifest-file /tmp/pact-manifest.json --broker-base-url https://mycompany.pact.dius.com.au --broker-username user1 --broker-password password1 --consumer-app-version 1.0.0

Command line options for publish option:

OptionDescriptionExample value
--manifest-file <manifest-file>The manifest file to process/tmp/pact-manifest.json
--broker-base-url [broker-base-url]The base URL of the Pact Broker [url]. Defaults to "https://localhost".
--broker-username [broker-username]Pact Broker basic auth username [username]``
--broker-password [broker-password]Pact Broker basic auth password [password]``
--consumer-app-version <consumer-app-version>The consumer application version1.0.1
--pact-tag [pact-tag]The tag of the pact files to publish. If omitted all the files will be published.`develop

Tests

Project tests:

yarn run test

Project linting:

yarn run lint

Coverage

yarn run test:coverage

Contributing

Commit Guidelines

The project uses the commitizen tool for standardizing changelog style commit messages so you should follow it as so:

git add .           # add files to staging
yarn run commit      # use the wizard for the commit message

FAQs

Package last updated on 17 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts