Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#62 Added missing export statement #65

Merged
merged 1 commit into from
Apr 19, 2024
Merged
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
5 changes: 5 additions & 0 deletions .changeset/fresh-socks-juggle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@croz/nrich-notification-core": patch
---

Added missing export, patched the github templates for clarity
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/01_bugReport.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ assignees: ""

## Basic information

* nrich-frontend version:
* nrich-frontend module version:
<!-- released version -->
* Module:
<!-- Please, include name(s) of relevant nrich-frontend's module(s). If not related to any specific module, specify "project" instead. -->
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/02_enhancementRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ assignees: ""

## Basic information

* nrich-frontend version:
* nrich-frontend module version:
<!-- released version -->
* Module:
<!-- Please, include name(s) of relevant nrich-frontend's module(s). If not related to any specific module, specify "project" instead. -->
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/03_featureRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ assignees: ""

## Basic information

* nrich-frontend version:
* nrich-frontend module version:
<!-- released version -->
* Module:
<!-- Please, include name(s) of relevant nrich-frontend's module(s). If not related to any specific module, specify "project" instead. -->
Expand Down
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

## Basic information

* nrich-frontend version:
* nrich-frontend module version:
<!-- released version -->
* Module:
<!-- Please, include name(s) of relevant nrich-frontend's module(s). If not related to any specific module, specify "project" instead. -->
Expand Down
1 change: 1 addition & 0 deletions libs/notification/core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@
export * from "./api";
export * from "./interceptor";
export * from "./hook/use-notifications";
export { addNotification, removeNotification } from "./store/notification-store";
Loading