Skip to content
This repository was archived by the owner on Apr 25, 2020. It is now read-only.

Commit 51ce0ca

Browse files
committed
Fix imports
1 parent 6cb5ecb commit 51ce0ca

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"icss-utils": "^4.1.0",
4141
"lodash": "^4.17.11",
4242
"node-sass": "^4.12.0",
43-
"postcss": "^7.0.16",
43+
"postcss": "^7.0.17",
4444
"postcss-icss-selectors": "^2.0.3",
4545
"reserved-words": "^0.1.2"
4646
},

src/Logger.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import * as fs from "fs";
2-
import * as path from "path";
3-
import * as os from "os";
4-
import * as tss from "typescript/lib/tsserverlibrary";
1+
import fs from "fs";
2+
import path from "path";
3+
import os from "os";
4+
import tss from "typescript/lib/tsserverlibrary";
55
import IOptions from "./IOptions";
66

77
export interface ILoggerOptions {
@@ -16,6 +16,7 @@ export default class Logger {
1616

1717
private get logPath() {
1818
const basePath = "/logs/ts-log.log";
19+
1920
return this.options.filePath
2021
? path.join(this.options.filePath, basePath)
2122
: path.join(os.homedir(), basePath);

yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3296,7 +3296,7 @@ postcss@^6.0.2:
32963296
source-map "^0.6.1"
32973297
supports-color "^5.4.0"
32983298

3299-
postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.16:
3299+
postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.17:
33003300
version "7.0.17"
33013301
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.17.tgz#4da1bdff5322d4a0acaab4d87f3e782436bad31f"
33023302
integrity sha512-546ZowA+KZ3OasvQZHsbuEpysvwTZNGJv9EfyCQdsIDltPSWHAeTQ5fQy/Npi2ZDtLI3zs7Ps/p6wThErhm9fQ==

0 commit comments

Comments
 (0)