12 lines
266 B
TypeScript
12 lines
266 B
TypeScript
|
|
||
|
import { setupSampleReactProject } from "./setupSampleReactProject";
|
||
|
|
||
|
const { sampleReactProjectDirPath } = setupSampleReactProject();
|
||
|
|
||
|
process.chdir(sampleReactProjectDirPath);
|
||
|
|
||
|
console.log(`Running main in ${sampleReactProjectDirPath}`);
|
||
|
|
||
|
import("../bin/main");
|
||
|
|