@fimbul/ymir
Advanced tools
Comparing version 0.16.0 to 0.17.0-dev.20181205
{ | ||
"name": "@fimbul/ymir", | ||
"version": "0.16.0", | ||
"version": "0.17.0-dev.20181205", | ||
"description": "Core library for the Fimbullinter project", | ||
@@ -10,3 +10,3 @@ "publishConfig": { | ||
"type": "git", | ||
"url": "git+https://github.com/fimbullinter/wotan.git" | ||
"url": "https://github.com/fimbullinter/wotan/tree/master/packages/ymir" | ||
}, | ||
@@ -13,0 +13,0 @@ "main": "src/index", |
@@ -176,3 +176,3 @@ import 'reflect-metadata'; | ||
} | ||
export declare const enum Format { | ||
export declare enum Format { | ||
Yaml = "yaml", | ||
@@ -224,3 +224,3 @@ Json = "json", | ||
} | ||
export declare const enum DeprecationTarget { | ||
export declare enum DeprecationTarget { | ||
Rule = "rule", | ||
@@ -227,0 +227,0 @@ Processor = "processor", |
@@ -127,2 +127,8 @@ "use strict"; | ||
exports.ConfigurationProvider = ConfigurationProvider; | ||
var Format; | ||
(function (Format) { | ||
Format["Yaml"] = "yaml"; | ||
Format["Json"] = "json"; | ||
Format["Json5"] = "json5"; | ||
})(Format = exports.Format || (exports.Format = {})); | ||
class AbstractProcessor { | ||
@@ -146,2 +152,8 @@ static getSuffixForFile(_context) { | ||
exports.DeprecationHandler = DeprecationHandler; | ||
var DeprecationTarget; | ||
(function (DeprecationTarget) { | ||
DeprecationTarget["Rule"] = "rule"; | ||
DeprecationTarget["Processor"] = "processor"; | ||
DeprecationTarget["Formatter"] = "formatter"; | ||
})(DeprecationTarget = exports.DeprecationTarget || (exports.DeprecationTarget = {})); | ||
class FileSystem { | ||
@@ -148,0 +160,0 @@ } |
Sorry, the diff of this file is not supported yet
35460
503