JSPM

@atomist/sdm-pack-clojure

0.2.16-atomist-update-peer-deps-1535534116510.20180829091532
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 65
  • Score
    100M100P100Q84233F
  • License Apache-2.0

an Atomist SDM pack for Clojure projects

Package Exports

  • @atomist/sdm-pack-clojure
  • @atomist/sdm-pack-clojure/lib/machine/goals
  • @atomist/sdm-pack-clojure/lib/machine/leinSupport

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-clojure) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@atomist/sdm-pack-clojure

atomist sdm goals npm version

Atomist software delivery machine (SDM) extension pack providing automated creation, building, and delivery of [Spring][spring] and [Spring Boot][spring-boot] applications.

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-clojure

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

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