4 Commits

Author SHA1 Message Date
0bdddc32d1 1.0.8 2023-04-19 17:21:17 +02:00
40651a5660 fix(core): update 2023-04-19 17:21:16 +02:00
5f1b4a784e 1.0.7 2022-10-21 14:24:36 +02:00
2da9122c68 fix(core): update 2022-10-21 14:24:36 +02:00
5 changed files with 1264 additions and 957 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "@pushrocks/smartping", "name": "@pushrocks/smartping",
"version": "1.0.6", "version": "1.0.8",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@pushrocks/smartping", "name": "@pushrocks/smartping",
"version": "1.0.6", "version": "1.0.8",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.25", "@gitzone/tsbuild": "^2.1.25",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartping", "name": "@pushrocks/smartping",
"version": "1.0.6", "version": "1.0.8",
"private": false, "private": false,
"description": "a ping utility", "description": "a ping utility",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@@ -15,16 +15,16 @@
}, },
"dependencies": { "dependencies": {
"@types/ping": "^0.4.1", "@types/ping": "^0.4.1",
"ping": "^0.4.2" "ping": "^0.4.4"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.25", "@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsbundle": "^2.0.5", "@gitzone/tsbundle": "^2.0.5",
"@gitzone/tsdoc": "^1.1.10", "@gitzone/tsdoc": "^1.1.10",
"@gitzone/tsrun": "^1.2.38", "@gitzone/tsrun": "^1.2.39",
"@gitzone/tstest": "^1.0.44", "@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.3", "@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^18.11.2" "@types/node": "^18.15.11"
}, },
"browserslist": [ "browserslist": [
"last 1 chrome versions" "last 1 chrome versions"

2203
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@pushrocks/smartping', name: '@pushrocks/smartping',
version: '1.0.6', version: '1.0.8',
description: 'a ping utility' description: 'a ping utility'
} }

View File

@@ -2,4 +2,4 @@ import ping from 'ping';
export { export {
ping ping
} }