Compare commits

...

8 Commits

Author SHA1 Message Date
f1db9c1c5d 4.0.8 2024-01-28 16:08:33 +01:00
e3974b3bb1 fix(core): update 2024-01-28 16:08:32 +01:00
016b93ea3a 4.0.7 2024-01-28 02:50:42 +01:00
ab870af0bb fix(core): update 2024-01-28 02:50:41 +01:00
8cda69b3c2 4.0.6 2023-07-21 19:01:26 +02:00
3641d75e2f fix(core): update 2023-07-21 19:01:26 +02:00
fd343c1558 4.0.5 2023-07-21 18:59:18 +02:00
76650ac199 fix(core): update 2023-07-21 18:59:17 +02:00
6 changed files with 2830 additions and 1916 deletions

View File

@ -119,6 +119,6 @@ jobs:
run: | run: |
npmci node install stable npmci node install stable
npmci npm install npmci npm install
pnpm install -g @gitzone/tsdoc pnpm install -g @git.zone/tsdoc
npmci command tsdoc npmci command tsdoc
continue-on-error: true continue-on-error: true

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartacme", "name": "@push.rocks/smartacme",
"version": "4.0.4", "version": "4.0.8",
"private": false, "private": false,
"description": "acme with an easy yet powerful interface in TypeScript", "description": "acme with an easy yet powerful interface in TypeScript",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@ -27,28 +27,28 @@
}, },
"homepage": "https://gitlab.com/umbrellazone/smartacme#README", "homepage": "https://gitlab.com/umbrellazone/smartacme#README",
"dependencies": { "dependencies": {
"@apiglobal/typedserver": "^2.0.65", "@api.global/typedserver": "^3.0.20",
"@push.rocks/lik": "^6.0.3", "@push.rocks/lik": "^6.0.12",
"@push.rocks/smartdata": "^5.0.8", "@push.rocks/smartdata": "^5.0.33",
"@push.rocks/smartdelay": "^3.0.5", "@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartdns": "^5.0.2", "@push.rocks/smartdns": "^5.0.2",
"@push.rocks/smartlog": "^3.0.3", "@push.rocks/smartlog": "^3.0.3",
"@push.rocks/smartpromise": "^4.0.3", "@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartrequest": "^2.0.18", "@push.rocks/smartrequest": "^2.0.21",
"@push.rocks/smartstring": "^4.0.5", "@push.rocks/smartstring": "^4.0.13",
"@push.rocks/smarttime": "^4.0.4", "@push.rocks/smarttime": "^4.0.6",
"@push.rocks/smartunique": "^3.0.3", "@push.rocks/smartunique": "^3.0.6",
"@tsclass/tsclass": "^4.0.42", "@tsclass/tsclass": "^4.0.46",
"acme-client": "^4.2.5" "acme-client": "^4.2.5"
}, },
"devDependencies": { "devDependencies": {
"@apiclient.xyz/cloudflare": "^6.0.3", "@apiclient.xyz/cloudflare": "^6.0.3",
"@gitzone/tsbuild": "^2.1.66", "@git.zone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.44", "@git.zone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77", "@git.zone/tstest": "^1.0.77",
"@push.rocks/qenv": "^5.0.2", "@push.rocks/qenv": "^6.0.4",
"@push.rocks/tapbundle": "^5.0.12", "@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.4.2" "@types/node": "^20.11.9"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

4687
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: '@push.rocks/smartacme', name: '@push.rocks/smartacme',
version: '4.0.4', version: '4.0.8',
description: 'acme with an easy yet powerful interface in TypeScript' description: 'acme with an easy yet powerful interface in TypeScript'
} }

View File

@ -1 +1,2 @@
export * from './smartacme.classes.smartacme.js'; export * from './smartacme.classes.smartacme.js';
export { Cert } from './smartacme.classes.cert.js';

View File

@ -1,5 +1,5 @@
// @apiglobal scope // @apiglobal scope
import * as typedserver from '@apiglobal/typedserver'; import * as typedserver from '@api.global/typedserver';
export { typedserver }; export { typedserver };