Compare commits

...

6 Commits

Author SHA1 Message Date
22c44a8cd0 3.0.3 2018-08-08 23:17:06 +02:00
bae2aebf83 fix(dependencies): now typings-global free 2018-08-08 23:17:06 +02:00
5fe2358bfe 3.0.2 2018-07-18 08:31:22 +02:00
280ded573d fix(dependencies): update 2018-07-18 08:31:22 +02:00
6b6a92b709 3.0.1 2018-07-13 22:28:18 +02:00
c1589c2309 fix(package): npm access level 2018-07-13 22:28:17 +02:00
6 changed files with 281 additions and 492 deletions

View File

@ -2,7 +2,8 @@
"npmci": {
"npmGlobalTools": [
"npmts"
]
],
"npmAccessLevel": "public"
},
"npmts": {
"testConfig": {

753
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +1,12 @@
{
"name": "@pushrocks/tapbundle",
"private": false,
"version": "3.0.0",
"version": "3.0.3",
"description": "tap bundled for tapbuffer",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "(tsrun test/test.ts)",
"test": "(tstest test/)",
"build": "(npmts)"
},
"repository": {
@ -20,15 +20,16 @@
},
"homepage": "https://gitlab.com/pushrocks/tapbundle#README",
"dependencies": {
"@gitzone/tstest": "^1.0.13",
"@pushrocks/early": "^3.0.3",
"@pushrocks/smartdelay": "^2.0.1",
"@pushrocks/smartpromise": "^2.0.5",
"early": "^2.1.1",
"leakage": "^0.4.0",
"smartchai": "^2.0.1"
},
"devDependencies": {
"@gitzone/tsrun": "^1.1.2",
"@types/node": "^10.5.2",
"@gitzone/tsrun": "^1.1.12",
"@types/node": "^10.5.7",
"randomstring": "^1.1.5"
}
}

View File

@ -1,4 +1,4 @@
import { tap, expect } from '../dist/index';
import { tap, expect } from '../ts/index';
let tapwrap = tap.wrap(async () => {
tap.test('should do something', async () => {

View File

@ -3,7 +3,7 @@ import { tapCreator } from './tapbundle.tapcreator';
import { TapTools } from './tapbundle.classes.taptools';
// imported interfaces
import { HrtMeasurement } from 'early';
import { HrtMeasurement } from '@pushrocks/early';
import { Deferred } from 'smartq';
// interfaces

View File

@ -1,4 +1,4 @@
import * as early from 'early';
import * as early from '@pushrocks/early';
import * as leakage from 'leakage';
import * as smartdelay from '@pushrocks/smartdelay';
import * as smartpromise from '@pushrocks/smartpromise';