Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
aluisiora committed Dec 4, 2017
2 parents fd3e2fe + d6581fb commit 6f6dcc9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "routeros-client",
"version": "0.2.5",
"version": "0.2.6",
"description": "Easy to use abstraction layer over the node-routeros API",
"main": "./dist/index",
"types": "./dist/index",
Expand Down Expand Up @@ -44,13 +44,13 @@
"@types/node": "^6.0.92",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"source-map-support": "^0.5.0",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.6.2"
},
"dependencies": {
"debug": "^3.1.0",
"source-map-support": "^0.5.0",
"node-routeros": "^1.0.9"
}
}
6 changes: 4 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import * as sourceMapSupport from "source-map-support";
if (process.env.ENV !== "production") sourceMapSupport.install();
if (process.env.ENV === "testing") {
const sourceMapSupport = require("source-map-support");
sourceMapSupport.install();
}

export * from "./RouterOSClient";
export * from "./RosApiModel";
Expand Down
1 change: 1 addition & 0 deletions src/tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"ordered-imports": false,
"no-trailing-whitespace": false,
"max-line-length": false,
"no-var-requires": false,
"no-shadowed-variable": false,
"quotemark": [true, "double", "avoid-escape", "avoid-template"]
},
Expand Down

0 comments on commit 6f6dcc9

Please sign in to comment.