Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tgmarinho committed Oct 21, 2022
1 parent 00f27c4 commit 07affb7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion example/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ console.log((0, hidocs_1.sayHello)("Thiago"));
// prints "hi Thiago"
console.log((0, hidocs_1.sayGoodbye)({ name: "John", age: 30 }));
// prints "goodbye John"
// whatTimeIsIt({ name: "John", age: 30 });
(0, hidocs_1.whatTimeIsIt)({ name: "John", age: 30 });
14 changes: 7 additions & 7 deletions example/package-lock.json

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

2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"start": "node dist/index.js"
},
"dependencies": {
"hidocs": "^1.0.1",
"hidocs": "^1.0.2",
"typescript": "^4.8.4"
}
}
4 changes: 2 additions & 2 deletions example/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { sayGoodbye, sayHello } from "hidocs";
import { sayGoodbye, sayHello, whatTimeIsIt } from "hidocs";

console.log(sayHello("Thiago"));
// prints "hi Thiago"
console.log(sayGoodbye({ name: "John", age: 30 }));
// prints "goodbye John"

// whatTimeIsIt({ name: "John", age: 30 });
whatTimeIsIt({ name: "John", age: 30 });

0 comments on commit 07affb7

Please sign in to comment.