8 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
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
5 changed files with 1120 additions and 493 deletions

View File

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

1581
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,13 @@
{ {
"name": "@pushrocks/smartdelay", "name": "@pushrocks/smartdelay",
"version": "2.0.0", "private": false,
"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",
"scripts": { "scripts": {
"test": "tsrun test/test.ts", "test": "(tstest test/)",
"build": "(npmts)" "build": "(tsbuild)"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@@ -19,12 +20,13 @@
}, },
"homepage": "https://gitlab.com/pushrocks/smartdelay#README", "homepage": "https://gitlab.com/pushrocks/smartdelay#README",
"dependencies": { "dependencies": {
"@pushrocks/smartpromise": "^2.0.5" "@pushrocks/smartpromise": "^3.0.6"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsrun": "^1.1.1", "@gitzone/tsbuild": "^2.1.17",
"@types/node": "^10.5.2", "@gitzone/tsrun": "^1.2.8",
"tapbundle": "^2.0.2" "@gitzone/tstest": "^1.0.28",
}, "@pushrocks/tapbundle": "^3.0.13",
"private": true "@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';

View File

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