1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/infrastructure/webpack/src/scripts/exec.injectable.ts
Iku-turso 28c9eeec36 feat: Make lens-webpack-build cope long lasting processes, eg. watch
Co-authored-by: Janne Savolainen <janne.savolainen@live.fi>

Signed-off-by: Mikko Aspiala <mikko.aspiala@gmail.com>
Signed-off-by: Iku-turso <mikko.aspiala@gmail.com>
2023-06-01 08:57:01 +03:00

10 lines
219 B
TypeScript

import { getInjectable } from "@ogre-tools/injectable";
import { exec } from "child_process";
export type Exec = typeof exec;
export const execInjectable = getInjectable({
id: "exec",
instantiate: () => exec,
});