Initial push

This commit is contained in:
Henry
2023-04-06 22:17:34 +01:00
commit 05c86ff9c5
162 changed files with 9112 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env node
const oclif = require('@oclif/core')
const path = require('path')
const project = path.join(__dirname, '..', 'tsconfig.json')
// In dev mode -> use ts-node and dev plugins
process.env.NODE_ENV = 'development'
require('ts-node').register({ project })
// In dev mode, always show stack traces
oclif.settings.debug = true
// Start the CLI
oclif.run().then(oclif.flush).catch(oclif.Errors.handle)
+3
View File
@@ -0,0 +1,3 @@
@echo off
node "%~dp0\dev" %*
+5
View File
@@ -0,0 +1,5 @@
#!/usr/bin/env node
const oclif = require('@oclif/core')
oclif.run().then(require('@oclif/core/flush')).catch(require('@oclif/core/handle'))
+3
View File
@@ -0,0 +1,3 @@
@echo off
node "%~dp0\run" %*