Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
4031692f6f | |||
174beae65f | |||
c1144d3405 |
0
dist/taskbuffer.classes.taskmanager.d.ts
vendored
Normal file
0
dist/taskbuffer.classes.taskmanager.d.ts
vendored
Normal file
2
dist/taskbuffer.classes.taskmanager.js
vendored
Normal file
2
dist/taskbuffer.classes.taskmanager.js
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
"use strict";
|
||||||
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFza2J1ZmZlci5jbGFzc2VzLnRhc2ttYW5hZ2VyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvdGFza2J1ZmZlci5jbGFzc2VzLnRhc2ttYW5hZ2VyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "taskbuffer",
|
"name": "taskbuffer",
|
||||||
"version": "1.0.10",
|
"version": "1.0.11",
|
||||||
"description": "flexible task management. TypeScript ready!",
|
"description": "flexible task management. TypeScript ready!",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist/index.d.ts",
|
||||||
|
File diff suppressed because one or more lines are too long
@ -148,7 +148,7 @@ describe("taskbuffer", function () {
|
|||||||
});
|
});
|
||||||
describe("taskparallel", function () {
|
describe("taskparallel", function () {
|
||||||
it("should run in Parallel", function (done) {
|
it("should run in Parallel", function (done) {
|
||||||
this.timeout("7000");
|
this.timeout(7000);
|
||||||
let testTaskparallel = new taskbuffer.Taskparallel({
|
let testTaskparallel = new taskbuffer.Taskparallel({
|
||||||
taskArray: [task1, task2, task3]
|
taskArray: [task1, task2, task3]
|
||||||
});
|
});
|
||||||
|
1
ts/taskbuffer.classes.taskmanager.ts
Normal file
1
ts/taskbuffer.classes.taskmanager.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
import * as plugins from './taskbuffer.plugins'
|
Reference in New Issue
Block a user