f40ef6b7c0
Align Cloudly with the current typedserver, smartconfig, smartstate, and Docker tooling releases so builds and Docker output stay compatible with the upgraded stack.
91 lines
2.7 KiB
TypeScript
91 lines
2.7 KiB
TypeScript
// node native
|
|
import * as path from 'path';
|
|
import * as crypto from 'node:crypto';
|
|
import * as stream from 'stream';
|
|
import * as fsPromises from 'node:fs/promises';
|
|
|
|
export { path, crypto, stream, fsPromises };
|
|
|
|
// @apiglobal scope
|
|
import * as typedrequest from '@api.global/typedrequest';
|
|
import * as typedsocket from '@api.global/typedsocket';
|
|
|
|
export { typedrequest, typedsocket };
|
|
|
|
// @apiclient.xyz scope
|
|
import * as cloudflare from '@apiclient.xyz/cloudflare';
|
|
import * as docker from '@apiclient.xyz/docker';
|
|
import * as hetznercloud from '@apiclient.xyz/hetznercloud';
|
|
import * as slack from '@apiclient.xyz/slack';
|
|
|
|
export { cloudflare, docker, hetznercloud, slack };
|
|
|
|
// @tsclass scope
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
export { tsclass };
|
|
|
|
// @push.rocks scope
|
|
import * as smartconfig from '@push.rocks/smartconfig';
|
|
import * as projectinfo from '@push.rocks/projectinfo';
|
|
import * as qenv from '@push.rocks/qenv';
|
|
import * as smartacme from '@push.rocks/smartacme';
|
|
import * as smartbucket from '@push.rocks/smartbucket';
|
|
import * as smartcli from '@push.rocks/smartcli';
|
|
import * as smartclickhouse from '@push.rocks/smartclickhouse';
|
|
import * as smartdata from '@push.rocks/smartdata';
|
|
import * as smartdelay from '@push.rocks/smartdelay';
|
|
import * as smartexit from '@push.rocks/smartexit';
|
|
import * as smartexpect from '@push.rocks/smartexpect';
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
import * as smartguard from '@push.rocks/smartguard';
|
|
import * as smartjson from '@push.rocks/smartjson';
|
|
import * as smartjwt from '@push.rocks/smartjwt';
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
import * as smartrequest from '@push.rocks/smartrequest';
|
|
import * as smartregistry from '@push.rocks/smartregistry';
|
|
import * as smartsamba from '@push.rocks/smartsamba';
|
|
import * as smartssh from '@push.rocks/smartssh';
|
|
import * as smartstream from '@push.rocks/smartstream';
|
|
import * as smartstring from '@push.rocks/smartstring';
|
|
import * as smartunique from '@push.rocks/smartunique';
|
|
import * as taskbuffer from '@push.rocks/taskbuffer';
|
|
import * as typedserver from '@api.global/typedserver';
|
|
|
|
export {
|
|
smartconfig,
|
|
projectinfo,
|
|
qenv,
|
|
smartacme,
|
|
smartbucket,
|
|
smartcli,
|
|
smartclickhouse,
|
|
smartdata,
|
|
smartexit,
|
|
smartexpect,
|
|
smartdelay,
|
|
smartfile,
|
|
smartguard,
|
|
smartjson,
|
|
smartjwt,
|
|
smartlog,
|
|
smartpath,
|
|
smartpromise,
|
|
smartregistry,
|
|
smartrequest,
|
|
smartsamba,
|
|
smartssh,
|
|
smartstream,
|
|
smartstring,
|
|
smartunique,
|
|
taskbuffer,
|
|
typedserver,
|
|
};
|
|
|
|
// @servezone scope
|
|
import * as servezoneInterfaces from '@serve.zone/interfaces';
|
|
|
|
export { servezoneInterfaces };
|