Skip to content
This repository has been archived by the owner on Feb 7, 2021. It is now read-only.

Commit

Permalink
reference fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiliavir committed May 19, 2019
1 parent 3b74778 commit 7ff0346
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 11 deletions.
13 changes: 7 additions & 6 deletions js/creator.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/creator.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/logger.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare class Logger {
export declare class Logger {
static error(...msg: any): void;
static success(...msg: any): void;
static info(...msg: any): void;
Expand Down
3 changes: 3 additions & 0 deletions js/logger.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/logger.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mvw-creator",
"version": "1.3.4",
"version": "1.3.5",
"description": "Module to generate a static website using pug, scss and typescript.",
"license": "MIT",
"author": {
Expand Down
1 change: 1 addition & 0 deletions ts/creator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import * as File from "vinyl";

import { load } from "./config-loader";
import { ICreatorConfig } from "./creator-config";
import { Logger } from "./logger";
import { isNullOrEmpty } from "./util";

const CreatorConfigSchema: any = require("./creator-config-schema");
Expand Down
2 changes: 1 addition & 1 deletion ts/logger.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class Logger {
export class Logger {
public static error(...msg: any) {
Logger.logger.error("\x1b[31m%s\x1b[0m", ...msg);
}
Expand Down

0 comments on commit 7ff0346

Please sign in to comment.