fix(core): update
This commit is contained in:
parent
b64fe567a8
commit
cd08cf370c
10
package.json
10
package.json
@ -22,12 +22,12 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/pushrocks/lik#README",
|
"homepage": "https://gitlab.com/pushrocks/lik#README",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^2.1.66",
|
"@git.zone/tsbuild": "^2.1.72",
|
||||||
"@git.zone/tsbundle": "^2.0.8",
|
"@git.zone/tsbundle": "^2.0.15",
|
||||||
"@git.zone/tsrun": "^1.2.44",
|
"@git.zone/tsrun": "^1.2.44",
|
||||||
"@git.zone/tstest": "^1.0.77",
|
"@git.zone/tstest": "^1.0.90",
|
||||||
"@pushrocks/tapbundle": "^5.0.8",
|
"@push.rocks/tapbundle": "^5.0.8",
|
||||||
"@types/node": "^20.9.0"
|
"@types/node": "^20.12.7"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@push.rocks/smartdelay": "^3.0.5",
|
"@push.rocks/smartdelay": "^3.0.5",
|
||||||
|
2296
pnpm-lock.yaml
generated
2296
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,4 @@
|
|||||||
import { tap, expect } from '@pushrocks/tapbundle';
|
import { tap, expect } from '@push.rocks/tapbundle';
|
||||||
import * as lik from '../ts/index.js';
|
import * as lik from '../ts/index.js';
|
||||||
|
|
||||||
let testAsyncExecutionStack: lik.AsyncExecutionStack;
|
let testAsyncExecutionStack: lik.AsyncExecutionStack;
|
||||||
@ -26,4 +26,4 @@ tap.test('should run in parallel', async (toolsArg) => {
|
|||||||
}, 0);
|
}, 0);
|
||||||
});
|
});
|
||||||
|
|
||||||
await tap.start();
|
export default tap.start();
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { tap, expect } from '@pushrocks/tapbundle';
|
import { tap, expect } from '@push.rocks/tapbundle';
|
||||||
|
|
||||||
import * as lik from '../ts/index.js';
|
import * as lik from '../ts/index.js';
|
||||||
|
|
||||||
@ -27,4 +27,4 @@ tap.test('should find an entry', async () => {
|
|||||||
expect(result.value1).toEqual('heyho3');
|
expect(result.value1).toEqual('heyho3');
|
||||||
});
|
});
|
||||||
|
|
||||||
await tap.start();
|
export default tap.start();
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { tap, expect } from '@pushrocks/tapbundle';
|
import { tap, expect } from '@push.rocks/tapbundle';
|
||||||
import * as lik from '../ts/index.js';
|
import * as lik from '../ts/index.js';
|
||||||
|
|
||||||
let testInterestmap: lik.InterestMap<number, number>;
|
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);
|
testInterestmap.informLostInterest(3);
|
||||||
});
|
});
|
||||||
|
|
||||||
await tap.start();
|
export default tap.start();
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { tap, expect } from '@pushrocks/tapbundle';
|
import { tap, expect } from '@push.rocks/tapbundle';
|
||||||
|
|
||||||
import { LimitedArray } from '../ts/index.js';
|
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();
|
expect(testLimitedArray.array.length < 7).toBeTrue();
|
||||||
});
|
});
|
||||||
|
|
||||||
await tap.start();
|
export default tap.start();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// import test framework
|
// import test framework
|
||||||
import { expect, tap } from '@pushrocks/tapbundle';
|
import { expect, tap } from '@push.rocks/tapbundle';
|
||||||
|
|
||||||
// import the module
|
// import the module
|
||||||
import * as lik from '../ts/index.js';
|
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();
|
expect(myLoopTracker.checkAndTrack(object2)).toBeFalse();
|
||||||
});
|
});
|
||||||
|
|
||||||
await tap.start();
|
export default tap.start();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// import test framework
|
// import test framework
|
||||||
import { expect, tap } from '@pushrocks/tapbundle';
|
import { expect, tap } from '@push.rocks/tapbundle';
|
||||||
|
|
||||||
// import the module
|
// import the module
|
||||||
import * as lik from '../ts/index.js';
|
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);
|
expect(testObjectmap.getArray()).not.toContain(oneObject);
|
||||||
});
|
});
|
||||||
|
|
||||||
await tap.start();
|
export default tap.start();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// import test framework
|
// import test framework
|
||||||
import { expect, tap } from '@pushrocks/tapbundle';
|
import { expect, tap } from '@push.rocks/tapbundle';
|
||||||
|
|
||||||
// import the module
|
// import the module
|
||||||
import * as lik from '../ts/index.js';
|
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();
|
testStringmap.wipe();
|
||||||
});
|
});
|
||||||
|
|
||||||
await tap.start();
|
export default tap.start();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// import test framework
|
// import test framework
|
||||||
import { expect, tap } from '@pushrocks/tapbundle';
|
import { expect, tap } from '@push.rocks/tapbundle';
|
||||||
|
|
||||||
// import the module
|
// import the module
|
||||||
import * as lik from '../ts/index.js';
|
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 tools.delayFor(2000);
|
||||||
});
|
});
|
||||||
|
|
||||||
await tap.start();
|
export default tap.start();
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { tap, expect } from '@pushrocks/tapbundle';
|
import { tap, expect } from '@push.rocks/tapbundle';
|
||||||
import * as lik from '../ts/index.js';
|
import * as lik from '../ts/index.js';
|
||||||
|
|
||||||
class TestClass {
|
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);
|
const jsonTreet = testTree.toJsonWithHierachy(testInstance);
|
||||||
});
|
});
|
||||||
|
|
||||||
await tap.start();
|
export default tap.start();
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/lik',
|
name: '@push.rocks/lik',
|
||||||
version: '6.0.14',
|
version: '6.0.15',
|
||||||
description: 'light little helpers for node'
|
description: 'Provides a collection of lightweight helpers and utilities for Node.js projects.'
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user