fix(core): update

This commit is contained in:
Philipp Kunz 2024-04-18 21:55:33 +02:00
parent b64fe567a8
commit cd08cf370c
12 changed files with 693 additions and 1653 deletions

View File

@ -22,12 +22,12 @@
},
"homepage": "https://gitlab.com/pushrocks/lik#README",
"devDependencies": {
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tsbuild": "^2.1.72",
"@git.zone/tsbundle": "^2.0.15",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@pushrocks/tapbundle": "^5.0.8",
"@types/node": "^20.9.0"
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.12.7"
},
"dependencies": {
"@push.rocks/smartdelay": "^3.0.5",

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
import { tap, expect } from '@pushrocks/tapbundle';
import { tap, expect } from '@push.rocks/tapbundle';
import * as lik from '../ts/index.js';
let testAsyncExecutionStack: lik.AsyncExecutionStack;
@ -26,4 +26,4 @@ tap.test('should run in parallel', async (toolsArg) => {
}, 0);
});
await tap.start();
export default tap.start();

View File

@ -1,4 +1,4 @@
import { tap, expect } from '@pushrocks/tapbundle';
import { tap, expect } from '@push.rocks/tapbundle';
import * as lik from '../ts/index.js';
@ -27,4 +27,4 @@ tap.test('should find an entry', async () => {
expect(result.value1).toEqual('heyho3');
});
await tap.start();
export default tap.start();

View File

@ -1,4 +1,4 @@
import { tap, expect } from '@pushrocks/tapbundle';
import { tap, expect } from '@push.rocks/tapbundle';
import * as lik from '../ts/index.js';
let testInterestmap: lik.InterestMap<number, number>;
@ -22,4 +22,4 @@ tap.test('should be able to inform about a lost interest', async () => {
testInterestmap.informLostInterest(3);
});
await tap.start();
export default tap.start();

View File

@ -1,4 +1,4 @@
import { tap, expect } from '@pushrocks/tapbundle';
import { tap, expect } from '@push.rocks/tapbundle';
import { LimitedArray } from '../ts/index.js';
@ -14,4 +14,4 @@ tap.test('should never be longer than the set length', async () => {
expect(testLimitedArray.array.length < 7).toBeTrue();
});
await tap.start();
export default tap.start();

View File

@ -1,5 +1,5 @@
// import test framework
import { expect, tap } from '@pushrocks/tapbundle';
import { expect, tap } from '@push.rocks/tapbundle';
// import the module
import * as lik from '../ts/index.js';
@ -21,4 +21,4 @@ tap.test('should add objects once and return true', async () => {
expect(myLoopTracker.checkAndTrack(object2)).toBeFalse();
});
await tap.start();
export default tap.start();

View File

@ -1,5 +1,5 @@
// import test framework
import { expect, tap } from '@pushrocks/tapbundle';
import { expect, tap } from '@push.rocks/tapbundle';
// import the module
import * as lik from '../ts/index.js';
@ -73,4 +73,4 @@ tap.test('should get one object and then remove it', async () => {
expect(testObjectmap.getArray()).not.toContain(oneObject);
});
await tap.start();
export default tap.start();

View File

@ -1,5 +1,5 @@
// import test framework
import { expect, tap } from '@pushrocks/tapbundle';
import { expect, tap } from '@push.rocks/tapbundle';
// import the module
import * as lik from '../ts/index.js';
@ -83,4 +83,4 @@ tap.test('lik.Stringmap.empty() -> should remove wipe and then notify', async ()
testStringmap.wipe();
});
await tap.start();
export default tap.start();

View File

@ -1,5 +1,5 @@
// import test framework
import { expect, tap } from '@pushrocks/tapbundle';
import { expect, tap } from '@push.rocks/tapbundle';
// import the module
import * as lik from '../ts/index.js';
@ -20,4 +20,4 @@ tap.test('should create a timed aggregaotor', async (tools) => {
await tools.delayFor(2000);
});
await tap.start();
export default tap.start();

View File

@ -1,4 +1,4 @@
import { tap, expect } from '@pushrocks/tapbundle';
import { tap, expect } from '@push.rocks/tapbundle';
import * as lik from '../ts/index.js';
class TestClass {
@ -37,4 +37,4 @@ tap.test("should create a JSON object that reflects a tree's hierachy", async ()
const jsonTreet = testTree.toJsonWithHierachy(testInstance);
});
await tap.start();
export default tap.start();

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/lik',
version: '6.0.14',
description: 'light little helpers for node'
version: '6.0.15',
description: 'Provides a collection of lightweight helpers and utilities for Node.js projects.'
}