We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21b56da commit 3eed8d4Copy full SHA for 3eed8d4
packages/runfiles/index.ts
@@ -1,12 +1,8 @@
1
-import {BAZEL_OUT_REGEX} from './paths';
2
-import {Runfiles} from './runfiles';
+import { Runfiles } from "./runfiles";
3
4
// Re-export the `Runfiles` class. This class if the runfile helpers need to be
5
// mocked for testing purposes. This is used by the linker but also publicly exposed.
6
-export {Runfiles};
7
-// Re-export a RegExp for matching `bazel-out` paths. This is used by the linker
8
-// but not intended for public use.
9
-export {BAZEL_OUT_REGEX as _BAZEL_OUT_REGEX};
+export { Runfiles };
10
11
/** Instance of the runfile helpers. */
12
export const runfiles = new Runfiles(process.env);
0 commit comments