Skip to content

Commit cb653ee

Browse files
fix(tfs): Rename $q.ts and $injector.ts files, removing leading dollar signs
Closes angular-ui/ui-router#3386
1 parent a74c3f7 commit cb653ee

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/vanilla/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
/** */
99
export * from "./interface";
1010

11-
export * from "./$q";
12-
export * from "./$injector";
11+
export * from "./q";
12+
export * from "./injector";
1313

1414
export * from "./baseLocationService";
1515
export * from "./hashLocationService";
File renamed without changes.

src/vanilla/plugins.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import { UIRouter } from "../router";
1111
import { PushStateLocationService } from "./pushStateLocationService";
1212
import { MemoryLocationService } from "./memoryLocationService";
1313
import { MemoryLocationConfig } from "./memoryLocationConfig";
14-
import { $injector } from "./$injector";
15-
import { $q } from "./$q";
14+
import { $injector } from "./injector";
15+
import { $q } from "./q";
1616
import { services } from "../common/coreservices";
1717

1818
export function servicesPlugin(router: UIRouter): ServicesPlugin {
File renamed without changes.

0 commit comments

Comments
 (0)