1.0.0 • Published 3 years ago

generator-create-kata v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

create-kata generator for yeoman

Introduction

This yeoman generator will create a simple typescript project with support for running tests with jest.

Installation

Install the generator (and if not already present yo itself) globally by executing:

npm install yo generator-create-kata -g

Usage

  1. Create a folder for your kata project
  2. Enter that folder (cd your-folder)
  3. Call yo create-kata and answer the prompted questions

The most important piece of information you will be asked for, is the kata's name. It will be used to build:

  • the project's name in the package.json
  • a spec file for your tests
  • a class for your solution code