Skip to content

Commit

Permalink
fix: Added missing export for AlertThrottledException class.
Browse files Browse the repository at this point in the history
  • Loading branch information
Byloth committed Feb 9, 2024
1 parent 20b1482 commit e951f73
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "1.2.2-rc.3",
"version": "1.2.2-rc.4",
"npmClient": "yarn"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vuert/root",
"version": "1.2.2-rc.3",
"version": "1.2.2-rc.4",
"packageManager": "yarn@4.1.0",
"workspaces": [
"packages/*"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@byloth/vuert",
"version": "1.2.2-rc.3",
"version": "1.2.2-rc.4",
"description": "The headless alerts, notifications & popups library for Vue.js craftsmen. ℹ",
"keywords": [
"Alert",
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import AlertHandler from "./components/AlertHandler.vue";
import Vuert from "./vuert.js";

export { createVuert, useVuert } from "./functions.js";
export { AlertThrottledException } from "./exceptions.js";
export { Action, Alert, Context } from "./models/index.js";

export type { VuertOptions, VuertSubscriber } from "./vuert.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/vuert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export type VuertSubscriber<R = void> = (alert: AlertOptions<R>) => Context<R> |

export default class Vuert
{
public static readonly VERSION: string = "1.2.2-rc.3";
public static readonly VERSION: string = "1.2.2-rc.4";

public static get DEFAULT_OPTS(): VuertOptions
{
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default defineConfig({
{ text: "Guide", link: "/guide/" },
{ text: "Configs", link: "/config/" },
{
text: "1.2.2-rc.3",
text: "1.2.2-rc.4",
items: [{ text: "Releases", link: `${REPO_HOME}/releases` }]
}
],
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@byloth/vuert-docs",
"version": "1.2.2-rc.3",
"version": "1.2.2-rc.4",
"type": "module",
"scripts": {
"dev": "vitepress dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@byloth/nuxt-vuert-module",
"version": "1.2.2-rc.3",
"version": "1.2.2-rc.4",
"description": "The headless alerts, notifications & popups module for Nuxt.js craftsmen. ℹ",
"keywords": [
"Alert",
Expand Down

0 comments on commit e951f73

Please sign in to comment.