mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00

* feat: make methods in CliRunner public * change: rename CliRunner to AppRunner * fix: process being passed incorrectly to runCli * feat: expose AppRunner.run for easily serving from JS apps * change: only make run methods on AppRunner public
5 lines
155 B
JavaScript
Executable File
5 lines
155 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
const { AppRunner } = require('..');
|
|
new AppRunner().runCli(process);
|