Skip to content

Commit

Permalink
fix: Fixed dependencies. + Missing exported types.
Browse files Browse the repository at this point in the history
  • Loading branch information
Byloth committed Sep 28, 2023
1 parent 7dd813f commit 1cd6679
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@byloth/core",
"version": "1.0.0",
"version": "1.0.1",
"description": "An unopinionated collection of useful functions and classes that I use widely in all my projects. 🔧",
"keywords": [
"Core",
Expand Down Expand Up @@ -60,7 +60,6 @@
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"sass": "^1.68.0",
"typescript": "^5.2.2",
"vite": "^4.4.9"
}
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const VERSION = "1.0.0";
export const VERSION = "1.0.1";

export { DeferredPromise, JsonStorage } from "./models";
export {
Expand All @@ -13,4 +13,4 @@ export {
unique
} from "./utils";

export type { Awaitable } from "./types";
export type { Awaitable, PromiseExecutor, PromiseResolver, PromiseRejecter } from "./types";
2 changes: 1 addition & 1 deletion src/models/deferred-promise.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { PromiseExecutor, PromiseResolver, PromiseRejecter } from "@/types/promise";
import type { PromiseExecutor, PromiseResolver, PromiseRejecter } from "@/types";

export default class DeferredPromise<T, E = unknown> extends Promise<T>
{
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion src/types/index.ts

This file was deleted.

0 comments on commit 1cd6679

Please sign in to comment.