First Commit

This commit is contained in:
2025-11-02 22:52:08 +01:00
commit 73fbbf1be2
5821 changed files with 977526 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
// First two lines will be needed when we replaced all console.xxx statements with log.xxx
var log = require('npmlog')
log.level = 'silly'
console.info('info ', 1)
console.log('log ', 2)
console.warn('warn ', 3)
console.error('error ', new Error('oh my!'))