Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit acf41a1

Browse files
committedDec 3, 2021
Updates missing imports after rebase
1 parent 8ce81c0 commit acf41a1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎firebase/src/core/data/gateways/shell-gateway.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import ShellError from "@faults/errors/shell-error";
1+
import ShellError from "#faults/errors/shell-error";
22
import { exec } from "child_process";
33

44
/**

‎firebase/src/core/data/repositories/git-repository.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ShellGateway } from "@data/gateways/shell-gateway";
1+
import { ShellGateway } from "#data/gateways/shell-gateway";
22

33
/** Git utilities applied to the current node process root folder. */
44
export class GitRepository {

‎firebase/src/core/faults/errors/shell-error.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BaseError } from "@faults/fault";
1+
import { BaseError } from "#faults/fault";
22

33
export default class ShellError extends BaseError {
44
constructor(fault: { message: string; origin?: unknown }) {

0 commit comments

Comments
 (0)
Please sign in to comment.