We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9152bda commit 99f15a6Copy full SHA for 99f15a6
firebase/src/core/data/gateways/shell-gateway.ts
@@ -1,4 +1,4 @@
1
-import ShellError from "@faults/errors/shell-error";
+import ShellError from "#faults/errors/shell-error";
2
import { exec } from "child_process";
3
4
/**
firebase/src/core/data/repositories/git-repository.ts
-import { ShellGateway } from "@data/gateways/shell-gateway";
+import { ShellGateway } from "#data/gateways/shell-gateway";
/** Interfaces access to the project git repository information. */
export class GitRepository {
firebase/src/core/faults/errors/shell-error.ts
-import { BaseError } from "@faults/fault";
+import { BaseError } from "#faults/fault";
export default class ShellError extends BaseError {
constructor(fault: { message: string; origin?: unknown }) {
0 commit comments