6 Commits

Author SHA1 Message Date
a99767986d 2.0.3 2019-03-26 12:43:01 +01:00
647a9ab4cb fix(core): update 2019-03-26 12:43:01 +01:00
ffb4d1c29e 2.0.2 2018-08-08 23:25:48 +02:00
f4480aa289 fix(CI): switch to new build stack 2018-08-08 23:25:48 +02:00
f952c71e2d 2.0.1 2018-07-06 14:26:01 +02:00
4edbd04c77 fix(access): fix accesslevels for npm 2018-07-06 14:26:00 +02:00
4 changed files with 938 additions and 172 deletions

View File

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

1082
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,13 @@
{
"name": "@pushrocks/smartdelay",
"version": "2.0.0",
"private": false,
"version": "2.0.3",
"description": "timeouts for the async/await era, written in TypeScript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "tsrun test/test.ts",
"build": "(npmts)"
"test": "(tstest test/)",
"build": "(tsbuild)"
},
"repository": {
"type": "git",
@@ -19,12 +20,13 @@
},
"homepage": "https://gitlab.com/pushrocks/smartdelay#README",
"dependencies": {
"@pushrocks/smartpromise": "^2.0.5"
"@pushrocks/smartpromise": "^3.0.2"
},
"devDependencies": {
"@gitzone/tsrun": "^1.1.1",
"@types/node": "^10.5.2",
"@gitzone/tsbuild": "^2.1.8",
"@gitzone/tsrun": "^1.2.1",
"@gitzone/tstest": "^1.0.18",
"@types/node": "^11.11.7",
"tapbundle": "^2.0.2"
},
"private": true
}
}

View File

@@ -1,4 +1,3 @@
import 'typings-global';
import * as smartpromise from '@pushrocks/smartpromise';
/**