This commit is contained in:
Joseph Garrone 2020-05-15 22:51:31 +02:00
parent 7ca6a7bc03
commit f405b1cc58
11 changed files with 195 additions and 85 deletions

View file

@ -0,0 +1,5 @@
import { getProjectRoot} from "../tools/getProjectRoot";
console.log(`Project root path: ${getProjectRoot()} does it seems right ? If yes then PASS`);

View file

@ -19,7 +19,8 @@ import { Deferred } from "evt/dist/tools/Deferred";
for (const name of [
"myFunction",
"myObject"
"myObject",
"getProjectRoot"
]) {
console.log(`Running: ${name}`);

View file

@ -1,3 +1,4 @@
import * as fs from "fs";
import * as path from "path";