2 Commits

Author SHA1 Message Date
f218d24c97 2.0.4 2019-11-03 16:56:17 +01:00
29983e44fa fix(core): update 2019-11-03 16:56:17 +01:00
3 changed files with 540 additions and 679 deletions

1203
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
{ {
"name": "@pushrocks/smartdelay", "name": "@pushrocks/smartdelay",
"private": false, "private": false,
"version": "2.0.3", "version": "2.0.4",
"description": "timeouts for the async/await era, written in TypeScript", "description": "timeouts for the async/await era, written in TypeScript",
"main": "dist/index.js", "main": "dist/index.js",
"typings": "dist/index.d.ts", "typings": "dist/index.d.ts",
@@ -20,13 +20,13 @@
}, },
"homepage": "https://gitlab.com/pushrocks/smartdelay#README", "homepage": "https://gitlab.com/pushrocks/smartdelay#README",
"dependencies": { "dependencies": {
"@pushrocks/smartpromise": "^3.0.2" "@pushrocks/smartpromise": "^3.0.6"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.8", "@gitzone/tsbuild": "^2.1.17",
"@gitzone/tsrun": "^1.2.1", "@gitzone/tsrun": "^1.2.8",
"@gitzone/tstest": "^1.0.18", "@gitzone/tstest": "^1.0.28",
"@types/node": "^11.11.7", "@pushrocks/tapbundle": "^3.0.13",
"tapbundle": "^2.0.2" "@types/node": "^12.12.5"
} }
} }

View File

@@ -1,4 +1,4 @@
import { expect, tap } from 'tapbundle'; import { expect, tap } from '@pushrocks/tapbundle';
import * as smartdelay from '../ts/index'; import * as smartdelay from '../ts/index';