We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c0fcaf commit 84092a2Copy full SHA for 84092a2
index.ts
@@ -25,14 +25,4 @@ export async function success(
25
pinst.enableAndSave(pkgRoot == null ? cwd : resolve(cwd, String(pkgRoot)));
26
}
27
28
-export async function fail(
29
- {pkgRoot}: {readonly pkgRoot?: string | undefined | null},
30
- {
31
- cwd,
32
- logger
33
- }: {readonly cwd: string; readonly logger: {readonly log: (...args: string[]) => void}}
34
-): Promise<void> {
35
- logger.log("Re-enabling postinstall script");
36
- // eslint-disable-next-line @typescript-eslint/no-unsafe-call,@typescript-eslint/no-unsafe-member-access
37
- pinst.enableAndSave(pkgRoot == null ? cwd : resolve(cwd, String(pkgRoot)));
38
-}
+export const fail = success;
0 commit comments