Skip to content

Commit

Permalink
Updated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Mohr committed Mar 31, 2017
1 parent e10cd8a commit 2436a69
Show file tree
Hide file tree
Showing 5 changed files with 2,870 additions and 921 deletions.
1 change: 1 addition & 0 deletions index.d.ts
@@ -1,5 +1,6 @@
export interface PluginOptions {
configuration?: any;
fix?: boolean;
formatter?: string | Function;
formattersDirectory?: string;
rulesDirectory?: string;
Expand Down
2 changes: 1 addition & 1 deletion index.js
@@ -1,6 +1,7 @@
/*jshint node:true */
/*jshint nomen: true */
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
// Requires
var TSLint = require("tslint");
// import * as vinyl from "vinyl";
Expand Down Expand Up @@ -198,7 +199,6 @@ tslintPlugin.report = function (options) {
};
return through(reportFailures, throwErrors);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = tslintPlugin;
// ES5/ES6 fallbacks
module.exports = tslintPlugin;
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -36,11 +36,11 @@
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-typescript": "^3.1.4",
"tslint": "^4",
"tslint": "^5",
"typescript": "^2"
},
"peerDependencies": {
"tslint": ">=4.0.0-dev"
"tslint": ">=5.0.0-dev"
},
"license": "MIT",
"engines": {
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Expand Up @@ -11,7 +11,8 @@
"outDir": ".",
"rootDir": ".",
"sourceMap": false,
"declaration": true
"declaration": true,
"lib" : ["es2015"]
},
"exclude": [
"node_modules"
Expand Down

0 comments on commit 2436a69

Please sign in to comment.