initial release of @git.zone/tsdeno - deno compile wrapper that strips package.json to prevent devDependency bloat

This commit is contained in:
2026-03-15 14:03:38 +00:00
commit b64232ebe3
15 changed files with 8382 additions and 0 deletions

21
ts/plugins.ts Normal file
View File

@@ -0,0 +1,21 @@
// node native
import * as path from 'path';
import * as fs from 'fs/promises';
export { path, fs };
// @push.rocks scope
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 * as smartshell from '@push.rocks/smartshell';
export {
smartcli,
smartfile,
smartlog,
smartlogDestinationLocal,
smartpath,
smartshell,
};