fix(core): update

This commit is contained in:
Philipp Kunz 2023-07-12 11:28:52 +02:00
parent f91fa33568
commit 9a20f8f6a1
9 changed files with 1536 additions and 921 deletions

View File

@ -7,10 +7,10 @@
"projectType": "npm", "projectType": "npm",
"module": { "module": {
"githost": "gitlab.com", "githost": "gitlab.com",
"gitscope": "pushrocks", "gitscope": "push.rocks",
"gitrepo": "smarttime", "gitrepo": "smarttime",
"description": "handle time in smart ways", "description": "handle time in smart ways",
"npmPackagename": "@pushrocks/smarttime", "npmPackagename": "@push.rocks/smarttime",
"license": "MIT" "license": "MIT"
} }
} }

View File

@ -1,5 +1,5 @@
{ {
"name": "@pushrocks/smarttime", "name": "@push.rocks/smarttime",
"private": false, "private": false,
"version": "4.0.1", "version": "4.0.1",
"description": "handle time in smart ways", "description": "handle time in smart ways",
@ -13,19 +13,19 @@
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.29", "@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.7", "@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.18", "@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.60", "@gitzone/tstest": "^1.0.60",
"@pushrocks/tapbundle": "^5.0.4", "@push.rocks/tapbundle": "^5.0.4",
"@types/node": "^18.11.9" "@types/node": "^20.4.1"
}, },
"dependencies": { "dependencies": {
"@pushrocks/lik": "^6.0.0", "@push.rocks/lik": "^6.0.3",
"@pushrocks/smartdelay": "^2.0.13", "@push.rocks/smartdelay": "^3.0.2",
"@pushrocks/smartpromise": "^3.1.6", "@push.rocks/smartpromise": "^4.0.3",
"croner": "^5.3.4", "croner": "^5.3.4",
"dayjs": "^1.10.7", "dayjs": "^1.11.9",
"is-nan": "^1.3.2", "is-nan": "^1.3.2",
"pretty-ms": "^8.0.0" "pretty-ms": "^8.0.0"
}, },
@ -45,4 +45,4 @@
"last 1 chrome versions" "last 1 chrome versions"
], ],
"type": "module" "type": "module"
} }

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
// tslint:disable-next-line:no-implicit-dependencies // tslint:disable-next-line:no-implicit-dependencies
import { expect, tap } from '@pushrocks/tapbundle'; import { expect, tap } from '@push.rocks/tapbundle';
import * as smarttime from '../ts/index.js'; import * as smarttime from '../ts/index.js';
// Test TimeStamp class // Test TimeStamp class

View File

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

View File

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

View File

@ -1,5 +1,5 @@
// tslint:disable-next-line:no-implicit-dependencies // tslint:disable-next-line:no-implicit-dependencies
import { expect, tap } from '@pushrocks/tapbundle'; import { expect, tap } from '@push.rocks/tapbundle';
import { Timer } from '../ts/index.js'; import { Timer } from '../ts/index.js';

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo * autocreated commitinfo by @pushrocks/commitinfo
*/ */
export const commitinfo = { export const commitinfo = {
name: '@pushrocks/smarttime', name: '@push.rocks/smarttime',
version: '4.0.1', version: '4.0.2',
description: 'handle time in smart ways' description: 'handle time in smart ways'
} }

View File

@ -1,7 +1,7 @@
// @pushrocks scope // @pushrocks scope
import * as lik from '@pushrocks/lik'; import * as lik from '@push.rocks/lik';
import * as smartdelay from '@pushrocks/smartdelay'; import * as smartdelay from '@push.rocks/smartdelay';
import * as smartpromise from '@pushrocks/smartpromise'; import * as smartpromise from '@push.rocks/smartpromise';
export { lik, smartdelay, smartpromise }; export { lik, smartdelay, smartpromise };