BREAKING CHANGE(core): Refactor module entry point and update plugin imports; remove deprecated dnsly.plugins, update dependency versions, and adjust test imports

This commit is contained in:
2025-05-27 11:31:12 +00:00
parent 34276f71ef
commit 24ed3bd238
12 changed files with 1217 additions and 2249 deletions

View File

@ -1,4 +1,4 @@
import * as plugins from './dnsly.plugins.js';
import * as plugins from './plugins.js';
export type TDnsProvider = 'google' | 'cloudflare';

View File

@ -9,9 +9,8 @@ export { dns };
// pushrocks scope
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrequest from '@push.rocks/smartrequest';
export { smartdelay, smartenv, smartpromise, smartrequest };
export { smartdelay, smartenv, smartpromise };
import * as tsclass from '@tsclass/tsclass';

3
ts_client/tspublish.json Normal file
View File

@ -0,0 +1,3 @@
{
"order": 2
}