Skip to content

Commit

Permalink
Exports
Browse files Browse the repository at this point in the history
  • Loading branch information
viction committed Jan 22, 2020
1 parent c189c74 commit 972d4c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Envuments.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as dotenv from 'dotenv';

import {Parser} from "./lib/Parser";
import {EnvumentType} from "./lib/Types.enum";
import { Parser } from "./lib/Parser";
import { EnvumentType } from "./lib/Types.enum";

let configObject: {[key: string]: any} = {};

Expand Down
3 changes: 1 addition & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { Envuments } from "../Envuments";
import { Envuments } from "./Envuments";

module.exports = Envuments;
export default Envuments;
2 changes: 1 addition & 1 deletion src/lib/Parser.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Envuments } from "../";
import Envuments from "../";

export class Parser {
private TEMPLATE_REGEX = /\${\w*}/g;
Expand Down

0 comments on commit 972d4c5

Please sign in to comment.