@atomist-seeds/sdm-pack
TypeScript icon, indicating that this package has built-in type declarations

1.0.0-master.20180914164149 • Public • Published

@atomist-seeds/sdm-pack

atomist sdm goals npm version

A starting point for an extension pack for an Atomist software delivery machine (SDM).

See the Atomist documentation for more information on what SDMs are and what they can do for you using the Atomist API for software.

Usage

Install the dependency in your SDM project.

$ npm install @atomist/sdm-pack-seed

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 { SeedSupport } from "@atomist/sdm-pack-seed";

export function machine(configuration: SoftwareDeliveryMachineConfiguration): SoftwareDeliveryMachine {
    const sdm = createSoftwareDeliveryMachine({
        name: "My Software Delivery Machine",
        configuration,
    });
    sdm.addExtensionPacks(SeedSupport);
    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.

Package Sidebar

Install

npm i @atomist-seeds/sdm-pack

Weekly Downloads

1

Version

1.0.0-master.20180914164149

License

Apache-2.0

Unpacked Size

180 kB

Total Files

15

Last publish

Collaborators

  • slimslenderslacks
  • cdupuis
  • ddatomist
  • atomist-bot