JSPM

@atomist/sdm-pack-issue

1.2.3-master.20190916025056
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q105839F
  • License Apache-2.0

Extension Pack for an Atomist SDM to automatically manage issues

Package Exports

  • @atomist/sdm-pack-issue
  • @atomist/sdm-pack-issue/lib/review/issue
  • @atomist/sdm-pack-issue/lib/review/issueManagingReviewListeners

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@atomist/sdm-pack-issue) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@atomist-seeds/sdm-pack-issue

atomist sdm goals npm version

Extension Pack for an Atomist SDM to automatically manage issues as they move through environments.

Usage

Install the dependency in your SDM project.

$ npm install @atomist/sdm-pack-issue

Then use its exported method to add the functionality to your SDM in your machine definition.

import {
    SoftwareDeliveryMachine,
    SoftwareDeliveryMachineConfiguration,
} from "@atomist/sdm";
import {
    createSoftwareDeliveryMachine,
} from "@atomist/sdm-core";
import { issueSupport } from "@atomist/sdm-pack-issue";

export function machine(configuration: SoftwareDeliveryMachineConfiguration): SoftwareDeliveryMachine {
    const sdm = createSoftwareDeliveryMachine({
        name: "My Software Delivery Machine",
        configuration,
    });
    sdm.addExtensionPacks(issueSupport());
    return sdm;
};

Support

General support questions should be discussed in the #support channel in the Atomist community Slack workspace.

If you find a problem, please create an issue.

Development

You will need to install Node.js to build and test this project.

Build and test

Install dependencies.

$ npm install

Use the build package script to compile, test, lint, and build the documentation.

$ npm run build

Release

Releases are handled via the Atomist SDM. Just press the 'Approve' button in the Atomist dashboard or Slack.


Created by Atomist. Need Help? Join our Slack workspace.