Compare commits

...

8 Commits

Author SHA1 Message Date
7b6260bb15 3.0.4 2018-08-08 23:20:14 +02:00
2345e972d5 fix(dependencies): use @gitzone/tsbuild instead of npmts 2018-08-08 23:20:14 +02:00
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 283 additions and 495 deletions

View File

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

753
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,13 +1,13 @@
{ {
"name": "@pushrocks/tapbundle", "name": "@pushrocks/tapbundle",
"private": false, "private": false,
"version": "3.0.0", "version": "3.0.4",
"description": "tap bundled for tapbuffer", "description": "tap bundled for tapbuffer",
"main": "dist/index.js", "main": "dist/index.js",
"typings": "dist/index.d.ts", "typings": "dist/index.d.ts",
"scripts": { "scripts": {
"test": "(tsrun test/test.ts)", "test": "(tstest test/)",
"build": "(npmts)" "build": "(tsbuild)"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@ -20,15 +20,17 @@
}, },
"homepage": "https://gitlab.com/pushrocks/tapbundle#README", "homepage": "https://gitlab.com/pushrocks/tapbundle#README",
"dependencies": { "dependencies": {
"@gitzone/tsbuild": "^2.0.22",
"@gitzone/tstest": "^1.0.13",
"@pushrocks/early": "^3.0.3",
"@pushrocks/smartdelay": "^2.0.1", "@pushrocks/smartdelay": "^2.0.1",
"@pushrocks/smartpromise": "^2.0.5", "@pushrocks/smartpromise": "^2.0.5",
"early": "^2.1.1",
"leakage": "^0.4.0", "leakage": "^0.4.0",
"smartchai": "^2.0.1" "smartchai": "^2.0.1"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsrun": "^1.1.2", "@gitzone/tsrun": "^1.1.12",
"@types/node": "^10.5.2", "@types/node": "^10.5.7",
"randomstring": "^1.1.5" "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 () => { let tapwrap = tap.wrap(async () => {
tap.test('should do something', async () => { tap.test('should do something', async () => {

View File

@ -3,7 +3,7 @@ import { tapCreator } from './tapbundle.tapcreator';
import { TapTools } from './tapbundle.classes.taptools'; import { TapTools } from './tapbundle.classes.taptools';
// imported interfaces // imported interfaces
import { HrtMeasurement } from 'early'; import { HrtMeasurement } from '@pushrocks/early';
import { Deferred } from 'smartq'; import { Deferred } from 'smartq';
// interfaces // 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 leakage from 'leakage';
import * as smartdelay from '@pushrocks/smartdelay'; import * as smartdelay from '@pushrocks/smartdelay';
import * as smartpromise from '@pushrocks/smartpromise'; import * as smartpromise from '@pushrocks/smartpromise';