Skip to content

Commit

Permalink
Add Missing Exports (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
henriqueleite42 authored Nov 13, 2021
1 parent e66e70a commit 3e2fca4
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ Issue Number: N/A

Please check if your PR fulfills the following requirements:

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

## PR Type
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

## [1.8.1] - 2021-11-13

### Added

- Export to `nest` at `src/index.ts`
- Export to `isClassInstance` at `src/index.ts`

### Changed

### Fixed

### Removed

## [1.8.0] - 2021-11-13

### Added
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": "@techmmunity/utils",
"version": "1.8.0",
"version": "1.8.1",
"main": "index.js",
"types": "index.d.ts",
"license": "Apache-2.0",
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

export * from "./lib/clean-obj";
export * from "./lib/sleep";
export * from "./lib/nest";
export * from "./lib/unnest";

/**
Expand Down Expand Up @@ -48,6 +49,7 @@ export * from "./lib/has-url";
export * from "./lib/is-alphanumeric";
export * from "./lib/is-between";
export * from "./lib/is-brazilian-phone";
export * from "./lib/is-class-instance";
export * from "./lib/is-cnpj";
export * from "./lib/is-cpf";
export * from "./lib/is-dark-hex-color";
Expand Down

0 comments on commit 3e2fca4

Please sign in to comment.