Skip to content

Latest commit

 

History

History
151 lines (94 loc) · 3.62 KB

README.md

File metadata and controls

151 lines (94 loc) · 3.62 KB

java

Java language plugin for the @form8ion toolset

Node CI Workflow Status Codecov SLSA Level 2

Table of Contents

Features

scaffold

Usage

MIT license npm Try @form8ion/java on RunKit

Installation

$ npm install @form8ion/java --save

Example

Import

import {scaffold, lift, test} from '@form8ion/java';

Execute

(async () => {
  const projectRoot = process.cwd();

  await scaffold({projectRoot, projectName: 'project-name'});

  if (await test({projectRoot})) {
    await lift({projectRoot, vcs: {}});
  }
})();

API

scaffold

projectRoot string (required)

path to the root of the project

projectName string (required)

name of the project

Contributing

Commitizen friendly Conventional Commits semantic-release: angular Renovate PRs Welcome

Dependencies

$ nvm install
$ npm install

Verification

$ npm test