diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 771d5f6..a235d71 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/lik', - version: '6.0.13', + version: '6.0.14', description: 'light little helpers for node' } diff --git a/ts/lik.asyncexecutionstack.ts b/ts/classes.asyncexecutionstack.ts similarity index 98% rename from ts/lik.asyncexecutionstack.ts rename to ts/classes.asyncexecutionstack.ts index 4cb76cc..9779a11 100644 --- a/ts/lik.asyncexecutionstack.ts +++ b/ts/classes.asyncexecutionstack.ts @@ -1,4 +1,4 @@ -import * as plugins from './lik.plugins.js'; +import * as plugins from './classes.plugins.js'; interface IExecutionSlot { executionDeferred: plugins.smartpromise.Deferred; diff --git a/ts/backpressuredarray.ts b/ts/classes.backpressuredarray.ts similarity index 96% rename from ts/backpressuredarray.ts rename to ts/classes.backpressuredarray.ts index 2ac1fc8..da74330 100644 --- a/ts/backpressuredarray.ts +++ b/ts/classes.backpressuredarray.ts @@ -1,4 +1,4 @@ -import * as plugins from './lik.plugins.js'; +import * as plugins from './classes.plugins.js'; export class BackpressuredArray { public data: T[]; diff --git a/ts/lik.fastmap.ts b/ts/classes.fastmap.ts similarity index 97% rename from ts/lik.fastmap.ts rename to ts/classes.fastmap.ts index fc65fd9..b0a4c01 100644 --- a/ts/lik.fastmap.ts +++ b/ts/classes.fastmap.ts @@ -3,7 +3,7 @@ The FastMap has the goal of creating the fastes to use map possible in JS ============ */ -import * as plugins from './lik.plugins.js'; +import * as plugins from './classes.plugins.js'; /** * fast map allows for very quick lookups of objects with a unique key diff --git a/ts/lik.interestmap.interest.ts b/ts/classes.interestmap.interest.ts similarity index 94% rename from ts/lik.interestmap.interest.ts rename to ts/classes.interestmap.interest.ts index 0fd905d..e7683ee 100644 --- a/ts/lik.interestmap.interest.ts +++ b/ts/classes.interestmap.interest.ts @@ -1,6 +1,6 @@ -import * as plugins from './lik.plugins.js'; +import * as plugins from './classes.plugins.js'; -import { InterestMap, type IInterestComparisonFunc } from './lik.interestmap.js'; +import { InterestMap, type IInterestComparisonFunc } from './classes.interestmap.js'; export interface IInterestOptions { markLostAfterDefault: number; diff --git a/ts/lik.interestmap.ts b/ts/classes.interestmap.ts similarity index 96% rename from ts/lik.interestmap.ts rename to ts/classes.interestmap.ts index d7451d0..08b1499 100644 --- a/ts/lik.interestmap.ts +++ b/ts/classes.interestmap.ts @@ -8,9 +8,9 @@ Subssequent interests will be mapped to the same interest which is then is only fullfilled once. =========== */ -import * as plugins from './lik.plugins.js'; -import { ObjectMap } from './lik.objectmap.js'; -import { Interest } from './lik.interestmap.interest.js'; +import * as plugins from './classes.plugins.js'; +import { ObjectMap } from './classes.objectmap.js'; +import { Interest } from './classes.interestmap.interest.js'; export type IInterestComparisonFunc = (objectArg: T) => string; diff --git a/ts/lik.limitedarray.ts b/ts/classes.limitedarray.ts similarity index 94% rename from ts/lik.limitedarray.ts rename to ts/classes.limitedarray.ts index b9f1f2a..d9daae7 100644 --- a/ts/lik.limitedarray.ts +++ b/ts/classes.limitedarray.ts @@ -1,4 +1,4 @@ -import * as plugins from './lik.plugins.js'; +import * as plugins from './classes.plugins.js'; export class LimitedArray { array: T[] = []; diff --git a/ts/lik.looptracker.ts b/ts/classes.looptracker.ts similarity index 79% rename from ts/lik.looptracker.ts rename to ts/classes.looptracker.ts index c39e1e5..e844feb 100644 --- a/ts/lik.looptracker.ts +++ b/ts/classes.looptracker.ts @@ -1,6 +1,6 @@ -import * as plugins from './lik.plugins.js'; +import * as plugins from './classes.plugins.js'; -import { ObjectMap } from './lik.objectmap.js'; +import { ObjectMap } from './classes.objectmap.js'; export class LoopTracker { referenceObjectMap = new ObjectMap(); diff --git a/ts/lik.objectmap.ts b/ts/classes.objectmap.ts similarity index 98% rename from ts/lik.objectmap.ts rename to ts/classes.objectmap.ts index 60d1d8d..aacea15 100644 --- a/ts/lik.objectmap.ts +++ b/ts/classes.objectmap.ts @@ -1,5 +1,5 @@ -import * as plugins from './lik.plugins.js'; -import { FastMap } from './lik.fastmap.js'; +import * as plugins from './classes.plugins.js'; +import { FastMap } from './classes.fastmap.js'; export const uni = (prefix: string = 'uni') => { return `${prefix}xxxxxxxxxxx`.replace(/[xy]/g, (c) => { diff --git a/ts/lik.plugins.ts b/ts/classes.plugins.ts similarity index 100% rename from ts/lik.plugins.ts rename to ts/classes.plugins.ts diff --git a/ts/lik.stringmap.ts b/ts/classes.stringmap.ts similarity index 98% rename from ts/lik.stringmap.ts rename to ts/classes.stringmap.ts index 4a48c0c..d5bbe13 100644 --- a/ts/lik.stringmap.ts +++ b/ts/classes.stringmap.ts @@ -1,4 +1,4 @@ -import * as plugins from './lik.plugins.js'; +import * as plugins from './classes.plugins.js'; /** * allows you to easily keep track of a bunch of strings diff --git a/ts/lik.timedaggregator.ts b/ts/classes.timedaggregator.ts similarity index 96% rename from ts/lik.timedaggregator.ts rename to ts/classes.timedaggregator.ts index 4720f43..a1f3c8f 100644 --- a/ts/lik.timedaggregator.ts +++ b/ts/classes.timedaggregator.ts @@ -1,4 +1,4 @@ -import * as plugins from './lik.plugins.js'; +import * as plugins from './classes.plugins.js'; export interface ITimedAggregatorOptions { aggregationIntervalInMillis: number; diff --git a/ts/lik.tree.ts b/ts/classes.tree.ts similarity index 98% rename from ts/lik.tree.ts rename to ts/classes.tree.ts index ee62956..45f87b1 100644 --- a/ts/lik.tree.ts +++ b/ts/classes.tree.ts @@ -1,4 +1,4 @@ -import * as plugins from './lik.plugins.js'; +import * as plugins from './classes.plugins.js'; export class Tree { symbolTree: any; diff --git a/ts/index.ts b/ts/index.ts index 9625eb3..a389946 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -1,11 +1,11 @@ -export * from './lik.asyncexecutionstack.js'; -export * from './backpressuredarray.js'; -export * from './lik.fastmap.js'; -export * from './lik.interestmap.js'; -export * from './lik.interestmap.interest.js'; -export * from './lik.limitedarray.js'; -export * from './lik.looptracker.js'; -export * from './lik.objectmap.js'; -export * from './lik.stringmap.js'; -export * from './lik.timedaggregator.js'; -export * from './lik.tree.js'; +export * from './classes.asyncexecutionstack.js'; +export * from './classes.backpressuredarray.js'; +export * from './classes.fastmap.js'; +export * from './classes.interestmap.js'; +export * from './classes.interestmap.interest.js'; +export * from './classes.limitedarray.js'; +export * from './classes.looptracker.js'; +export * from './classes.objectmap.js'; +export * from './classes.stringmap.js'; +export * from './classes.timedaggregator.js'; +export * from './classes.tree.js';