Skip to content

Commit

Permalink
Change filenames to kebab case
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagogoncalves89 committed Oct 1, 2020
1 parent 533d24a commit b3e550e
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { Logger } from "./Logger";
export { LogLevelEnum } from "./LogLevelEnum.js";
export { Logger } from "./logger";
export { LogLevelEnum } from "./log-level-enum.js";
File renamed without changes.
2 changes: 1 addition & 1 deletion src/LoggerFilter.ts → src/logger-filter.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import stringify from "json-stringify-safe";
import { DEFAULT_BLACK_LIST } from "./DefaultBlackList";
import { DEFAULT_BLACK_LIST } from "./default-black-list";

type TItem = { [key: string]: any };

Expand Down
4 changes: 2 additions & 2 deletions src/Logger.ts → src/logger.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import stringify from "json-stringify-safe";
import { LoggerFilter } from "./LoggerFilter";
import { LogLevelEnum } from "./LogLevelEnum";
import { LoggerFilter } from "./logger-filter";
import { LogLevelEnum } from "./log-level-enum";
import callSites from "callsites";

interface LoggerOptions {
Expand Down
4 changes: 2 additions & 2 deletions test/LoggerFilter.test.ts → test/logger-filter.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { DEFAULT_BLACK_LIST } from "../src/DefaultBlackList";
import { LoggerFilter } from "../src/LoggerFilter";
import { DEFAULT_BLACK_LIST } from "../src/default-black-list";
import { LoggerFilter } from "../src/logger-filter";
import faker from "faker";

const DEFAULT_PLACE_HOLDER = "*sensitive*";
Expand Down
4 changes: 2 additions & 2 deletions test/Logger.test.ts → test/logger.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import faker from "faker";
import { Logger } from "../src/Logger";
import { LogLevelEnum } from "../src/LogLevelEnum";
import { Logger } from "../src/logger";
import { LogLevelEnum } from "../src/log-level-enum";
import callSites from "callsites";

const DEFAULT_PLACE_HOLDER = "*sensitive*";
Expand Down

0 comments on commit b3e550e

Please sign in to comment.