Skip to content

Commit 3e2fca4

Browse files
Add Missing Exports (#37)
1 parent e66e70a commit 3e2fca4

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ Issue Number: N/A
88

99
Please check if your PR fulfills the following requirements:
1010

11-
- [ ] The commit message follows our guidelines: https://github.com/techmmunity/utils/blob/master/CONTRIBUTING.md
11+
- [ ] The commit message follows [our guidelines](https://github.com/techmmunity/utils/blob/master/CONTRIBUTING.md)
12+
- [ ] [GitFlow](https://github.com/techmmunity/git-magic/blob/master/docs/en/gitflow.md) have been used
1213
- [ ] Tests for the changes have been added / updated
13-
- [ ] Docs have been added / updated
14+
- [ ] Docs have been added / updated to `README.md`
1415
- [ ] The changes has been added to `CHANGELOG.md`
15-
- [ ] I followed GitFlow pattern to create the branch
16+
- [ ] Exports for the new functions have been added to `src/index.ts`
1617
- [ ] My code produces no warnings or errors
1718

1819
## PR Type

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
### Removed
1717

18+
## [1.8.1] - 2021-11-13
19+
20+
### Added
21+
22+
- Export to `nest` at `src/index.ts`
23+
- Export to `isClassInstance` at `src/index.ts`
24+
25+
### Changed
26+
27+
### Fixed
28+
29+
### Removed
30+
1831
## [1.8.0] - 2021-11-13
1932

2033
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@techmmunity/utils",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"main": "index.js",
55
"types": "index.d.ts",
66
"license": "Apache-2.0",

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
export * from "./lib/clean-obj";
1010
export * from "./lib/sleep";
11+
export * from "./lib/nest";
1112
export * from "./lib/unnest";
1213

1314
/**
@@ -48,6 +49,7 @@ export * from "./lib/has-url";
4849
export * from "./lib/is-alphanumeric";
4950
export * from "./lib/is-between";
5051
export * from "./lib/is-brazilian-phone";
52+
export * from "./lib/is-class-instance";
5153
export * from "./lib/is-cnpj";
5254
export * from "./lib/is-cpf";
5355
export * from "./lib/is-dark-hex-color";

0 commit comments

Comments
 (0)