Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## [6.1.1](https://github.com/handfish/hygen/compare/v6.1.0...v6.1.1) (2022-02-16)


### Bug Fixes

* capitalization from numeric strings breaks template generation ([4e32f5a](https://github.com/handfish/hygen/commit/4e32f5a2ab0c1f06dc56f8c5f0df6259a8ae011e))



7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
<img src="https://raw.githubusercontent.com/jondot/hygen/master/media/hygen.png" alt="hygen logo" width=400 />
</h3>

[![build status](https://img.shields.io/travis/jondot/hygen/master.svg)](https://travis-ci.org/jondot/hygen)
[![npm version](https://img.shields.io/npm/v/hygen.svg)](https://www.npmjs.com/package/hygen)
## Installing this Fork

`yarn add @handfish/hygen`

[![npm version](https://img.shields.io/npm/v/hygen.svg)](https://www.npmjs.com/package/@handfish/hygen)

`hygen` is the simple, fast, and scalable code generator that lives _in_ your project.

Expand Down
21 changes: 3 additions & 18 deletions dist/context.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/context.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions dist/helpers.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/// <reference types="node" />
import changeCase from 'change-case';
import path from 'path';
declare const helpers: {
capitalize(str: any): string;
inflection: any;
changeCase: typeof changeCase;
path: path.PlatformPath;
};
export default helpers;
24 changes: 24 additions & 0 deletions dist/helpers.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/helpers.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions dist/newline.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const newline: (string: any) => string;
export default newline;
14 changes: 14 additions & 0 deletions dist/newline.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/newline.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion dist/ops/add.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ops/add.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 22 additions & 5 deletions dist/ops/injector.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading