Skip to content

Commit

Permalink
fix the cowsay function type definition name
Browse files Browse the repository at this point in the history
  • Loading branch information
erincones committed Jun 23, 2022
1 parent 05c6fb5 commit b54d171
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ commands, once installed, run `cowsayjs -h`, `cowthinkjs -h` or `moojs -h` to
print the help.

```Text
moojs, cowsayjs, cowthinkjs v1.0.6
moojs, cowsayjs, cowthinkjs v1.0.7
Copyright (c) 2021 Erick Rincones
Licensed under the MIT License
Expand Down
2 changes: 1 addition & 1 deletion cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function getArg(token, j, argv, i) {
*/
function printHelp() {
// Version
var version = "1.0.5";
var version = "1.0.7";

// Get current script
var script = process.argv[1].replace(/\\/g, "/");
Expand Down
2 changes: 1 addition & 1 deletion lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export declare function cowsay(message?: string, options?: CowOptions): string;
* @param options Cow options with message
* @returns ASCII cow saying the message
*/
export declare function cowtsay(options?: CowAllOptions): string;
export declare function cowsay(options?: CowAllOptions): string;


/**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cowsayjs",
"version": "1.0.6",
"version": "1.0.7",
"description": "A nodejs clone of the classic cowsay and cowthink cli commands",
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit b54d171

Please sign in to comment.