@fimbul/wotan
Advanced tools
{ | ||
"name": "@fimbul/wotan", | ||
"version": "0.17.0-dev.20181201", | ||
"version": "0.17.0-dev.20181205", | ||
"description": "Pluggable TypeScript and JavaScript linter", | ||
@@ -11,3 +11,3 @@ "bin": "bin/main.js", | ||
"type": "git", | ||
"url": "git+https://github.com/fimbullinter/wotan.git" | ||
"url": "https://github.com/fimbullinter/wotan/tree/master/packages/wotan" | ||
}, | ||
@@ -48,4 +48,4 @@ "keywords": [ | ||
"dependencies": { | ||
"@fimbul/mimir": "0.17.0-dev.20181201", | ||
"@fimbul/ymir": "0.16.0", | ||
"@fimbul/mimir": "0.17.0-dev.20181205", | ||
"@fimbul/ymir": "0.17.0-dev.20181205", | ||
"bind-decorator": "^1.0.11", | ||
@@ -52,0 +52,0 @@ "chalk": "^2.3.0", |
@@ -5,2 +5,10 @@ "use strict"; | ||
const inversify_1 = require("inversify"); | ||
var CommandName; | ||
(function (CommandName) { | ||
CommandName["Lint"] = "lint"; | ||
CommandName["Save"] = "save"; | ||
CommandName["Validate"] = "validate"; | ||
CommandName["Show"] = "show"; | ||
CommandName["Test"] = "test"; | ||
})(CommandName = exports.CommandName || (exports.CommandName = {})); | ||
let AbstractCommandRunner = class AbstractCommandRunner { | ||
@@ -7,0 +15,0 @@ }; |
import { FileSystem, CacheFactory } from '@fimbul/ymir'; | ||
export declare const enum FileKind { | ||
export declare enum FileKind { | ||
NonExistent = 0, | ||
@@ -4,0 +4,0 @@ File = 1, |
@@ -9,2 +9,9 @@ "use strict"; | ||
const path = require("path"); | ||
var FileKind; | ||
(function (FileKind) { | ||
FileKind[FileKind["NonExistent"] = 0] = "NonExistent"; | ||
FileKind[FileKind["File"] = 1] = "File"; | ||
FileKind[FileKind["Directory"] = 2] = "Directory"; | ||
FileKind[FileKind["Other"] = 3] = "Other"; | ||
})(FileKind = exports.FileKind || (exports.FileKind = {})); | ||
let CachedFileSystem = class CachedFileSystem { | ||
@@ -11,0 +18,0 @@ constructor(fs, cache) { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
274148
0.34%3405
0.44%