feat(cli): add npmextra-based compile target configuration for deno builds

This commit is contained in:
2026-03-15 15:28:17 +00:00
parent 0c86e0b43e
commit 3f483ccd9c
9 changed files with 153 additions and 58 deletions

View File

@@ -1,21 +1,17 @@
// node native
import * as path from 'path';
import * as fs from 'fs/promises';
export { path, fs };
export { path };
// @push.rocks scope
import * as npmextra from '@push.rocks/npmextra';
import * as smartcli from '@push.rocks/smartcli';
import * as smartfile from '@push.rocks/smartfile';
import * as smartlog from '@push.rocks/smartlog';
import * as smartlogDestinationLocal from '@push.rocks/smartlog-destination-local';
import * as smartpath from '@push.rocks/smartpath';
import { SmartFs, SmartFsProviderNode } from '@push.rocks/smartfs';
import * as smartshell from '@push.rocks/smartshell';
export {
npmextra,
smartcli,
smartfile,
smartlog,
smartlogDestinationLocal,
smartpath,
SmartFs,
SmartFsProviderNode,
smartshell,
};