Skip to content

Commit

Permalink
switch to relative paths | resolves #1054
Browse files Browse the repository at this point in the history
  • Loading branch information
chmln committed Oct 14, 2017
1 parent 91e0c9b commit 366fd33
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/types/instance.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { DateOption, Options, ParsedOptions } from "./options";
import { Locale, CustomLocale, key as LocaleKey } from "./locale";

import { RevFormat, Formats, TokenRegex } from "utils/formatting";
import { RevFormat, Formats, TokenRegex } from "../utils/formatting";

interface Elements {
element: HTMLElement;
Expand Down
2 changes: 1 addition & 1 deletion src/types/options.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Instance } from "./instance";
import { getWeek } from "utils/dates";
import { getWeek } from "../utils/dates";
import { CustomLocale, key as LocaleKey } from "./locale";

export type DateOption = Date | string | number;
Expand Down
2 changes: 1 addition & 1 deletion src/utils/dates.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Locale } from "types/locale";
import { Locale } from "../types/locale";
/**
* Compute the difference in dates, measured in ms
*/
Expand Down
8 changes: 4 additions & 4 deletions src/utils/formatting.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { int, pad } from "utils";
import { Locale } from "types/locale";
import { ParsedOptions } from "types/options";
import { monthToStr } from "utils/dates";
import { int, pad } from "../utils";
import { Locale } from "../types/locale";
import { ParsedOptions } from "../types/options";
import { monthToStr } from "../utils/dates";

export type token =
| "D"
Expand Down

0 comments on commit 366fd33

Please sign in to comment.