Skip to content

form8ion/java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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