mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
48fedee34e
This also modifies the `ts_library_builder` to support inlining assets. Includes integration tests from @sh7dm
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import * as path from "path";
|
|
import { main as buildRuntimeLib } from "./build_library";
|
|
|
|
// this is very simplistic argument parsing, just enough to integrate into
|
|
// the build scripts, versus being very robust
|
|
let basePath = process.cwd();
|
|
let buildPath = path.join(basePath, "out", "debug");
|
|
let outFile = path.join(buildPath, "gen", "lib", "lib.d.ts");
|
|
let inline: string[] = [];
|
|
let debug = false;
|
|
let silent = false;
|
|
|
|
process.argv.forEach((arg, i, argv) => {
|
|
// tslint:disable-next-line:switch-default
|
|
switch (arg) {
|
|
case "--basePath":
|
|
basePath = path.resolve(argv[i + 1]);
|
|
break;
|
|
case "--buildPath":
|
|
buildPath = path.resolve(argv[i + 1]);
|
|
break;
|
|
case "--inline":
|
|
inline = argv[i + 1].split(",").map(filename => {
|
|
return path.resolve(filename);
|
|
});
|
|
break;
|
|
case "--outFile":
|
|
outFile = path.resolve(argv[i + 1]);
|
|
break;
|
|
case "--debug":
|
|
debug = true;
|
|
break;
|
|
case "--silent":
|
|
silent = true;
|
|
break;
|
|
}
|
|
});
|
|
|
|
buildRuntimeLib({
|
|
basePath,
|
|
buildPath,
|
|
debug,
|
|
inline,
|
|
outFile,
|
|
silent
|
|
});
|