2019-01-09 12:59:46 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-03-09 12:30:38 -05:00
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-triple-slash-reference
|
2019-01-28 20:41:28 -05:00
|
|
|
/// <reference path="./plugins.d.ts" />
|
2018-11-08 19:09:18 -05:00
|
|
|
|
2019-01-28 20:41:28 -05:00
|
|
|
import "./globals";
|
|
|
|
|
2019-02-12 21:14:02 -05:00
|
|
|
import { assert, log } from "./util";
|
2018-08-17 16:34:30 -04:00
|
|
|
import * as os from "./os";
|
2018-09-22 08:47:44 -04:00
|
|
|
import { args } from "./deno";
|
2018-11-05 12:55:59 -05:00
|
|
|
import { replLoop } from "./repl";
|
2019-02-18 18:43:02 -05:00
|
|
|
import { setVersions } from "./version";
|
2019-02-12 21:14:02 -05:00
|
|
|
import { setLocation } from "./location";
|
2018-06-11 21:54:55 -04:00
|
|
|
|
2019-01-09 12:59:46 -05:00
|
|
|
// builtin modules
|
|
|
|
import * as deno from "./deno";
|
2019-01-06 14:17:13 -05:00
|
|
|
|
2019-01-28 20:41:28 -05:00
|
|
|
// TODO(kitsonk) remove with `--types` below
|
2019-03-30 14:45:36 -04:00
|
|
|
import libDts from "gen/cli/lib/lib.deno_runtime.d.ts!string";
|
2019-01-09 12:59:46 -05:00
|
|
|
|
2019-04-01 15:09:59 -04:00
|
|
|
export default function denoMain(name?: string): void {
|
|
|
|
const startResMsg = os.start(name);
|
2018-08-02 13:13:32 -04:00
|
|
|
|
2019-02-18 18:43:02 -05:00
|
|
|
setVersions(startResMsg.denoVersion()!, startResMsg.v8Version()!);
|
|
|
|
|
2018-10-15 20:52:33 -04:00
|
|
|
// handle `--version`
|
|
|
|
if (startResMsg.versionFlag()) {
|
2019-02-18 18:43:02 -05:00
|
|
|
console.log("deno:", deno.version.deno);
|
|
|
|
console.log("v8:", deno.version.v8);
|
|
|
|
console.log("typescript:", deno.version.typescript);
|
2019-01-28 20:41:28 -05:00
|
|
|
os.exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// handle `--types`
|
|
|
|
// TODO(kitsonk) move to Rust fetching from compiler
|
|
|
|
if (startResMsg.typesFlag()) {
|
|
|
|
console.log(libDts);
|
2018-10-15 20:52:33 -04:00
|
|
|
os.exit(0);
|
|
|
|
}
|
|
|
|
|
2019-02-12 21:14:02 -05:00
|
|
|
const mainModule = startResMsg.mainModule();
|
|
|
|
if (mainModule) {
|
|
|
|
assert(mainModule.length > 0);
|
|
|
|
setLocation(mainModule);
|
|
|
|
}
|
|
|
|
|
2018-07-06 11:27:36 -04:00
|
|
|
const cwd = startResMsg.cwd();
|
2018-07-13 03:24:07 -04:00
|
|
|
log("cwd", cwd);
|
2018-06-13 19:40:35 -04:00
|
|
|
|
2018-08-23 19:46:21 -04:00
|
|
|
for (let i = 1; i < startResMsg.argvLength(); i++) {
|
2018-09-22 08:47:44 -04:00
|
|
|
args.push(startResMsg.argv(i));
|
2018-06-13 19:40:35 -04:00
|
|
|
}
|
2018-09-22 08:47:44 -04:00
|
|
|
log("args", args);
|
|
|
|
Object.freeze(args);
|
2018-08-17 16:34:30 -04:00
|
|
|
|
2019-02-12 21:14:02 -05:00
|
|
|
if (!mainModule) {
|
2018-11-05 12:55:59 -05:00
|
|
|
replLoop();
|
|
|
|
}
|
2018-07-21 21:14:52 -04:00
|
|
|
}
|