Add moment.js as a dependency, enhance TypeScript configuration to exclude scripts, and introduce new examples for dependency injection and health checks.

This commit is contained in:
2025-10-26 09:39:46 -04:00
parent 5d9b77ef7d
commit 3429df650f
26 changed files with 868 additions and 30 deletions

5
scripts/npm-install.js Normal file
View File

@@ -0,0 +1,5 @@
import runner from './Runner.js';
runner.runCommands(['node --version', 'npm --version', 'npm install --no-save'], () => {
process.exit(0);
});