Skip to content

Commit

Permalink
merge: Merge branch 'feature/refactoring-v2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Byloth committed Sep 23, 2024
2 parents af66a66 + d265026 commit 81415a8
Show file tree
Hide file tree
Showing 19 changed files with 795 additions and 879 deletions.
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@byloth/core",
"version": "2.0.0-rc.2",
"version": "2.0.0-rc.3",
"description": "An unopinionated collection of useful functions and classes that I use widely in all my projects. 🔧",
"keywords": [
"Core",
Expand Down Expand Up @@ -57,15 +57,14 @@
"ci": "pnpm install --frozen-lockfile"
},
"devDependencies": {
"@byloth/eslint-config-typescript": "^2.8.2",
"@byloth/eslint-config-typescript": "^2.8.3",
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"husky": "^9.1.5",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"typescript": "^5.6.2",
"vite": "^5.4.4",
"vitest": "^2.0.5"
"vite": "^5.4.7"
},
"packageManager": "pnpm@9.3.0+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631"
}
639 changes: 130 additions & 509 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

22 changes: 10 additions & 12 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const VERSION = "2.0.0-rc.2";
export const VERSION = "2.0.0-rc.3";

export type { Constructor, Interval, Timeout } from "./core/types.js";

Expand All @@ -7,8 +7,6 @@ export { isBrowser, isNode, isWebWorker } from "./helpers.js";
export {
AggregatedIterator,
AggregatedAsyncIterator,
Aggregator,
AsyncAggregator,
Clock,
Countdown,
DeferredPromise,
Expand Down Expand Up @@ -40,23 +38,23 @@ export {

export type {
AsyncGeneratorFunction,
AsyncIterLike,
AsyncIteratorLike,
FulfilledHandler,
GeneratorFunction,
Iteratee,
IterLike,
IteratorLike,
JSONArray,
JSONObject,
JSONValue,
KeyIteratee,
KeyReducer,
KeyTypeGuardIteratee,
MaybeAsyncKeyIteratee,
MaybeAsyncKeyReducer,
MaybeAsyncKeyTypeGuardIteratee,
KeyedIteratee,
KeyedReducer,
KeyedTypeGuardIteratee,
MaybeAsyncKeyedIteratee,
MaybeAsyncKeyedReducer,
MaybeAsyncKeyedTypeGuardIteratee,
MaybeAsyncReducer,
MaybeAsyncIteratee,
MaybeAsyncIterLike,
MaybeAsyncIteratorLike,
MaybeAsyncTypeGuardIteratee,
MaybePromise,
PromiseExecutor,
Expand Down
Loading

0 comments on commit 81415a8

Please sign in to comment.