Skip to content
This repository has been archived by the owner on Apr 2, 2019. It is now read-only.

Commit

Permalink
v0.0.19 moved out Err, loader
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuri Astrakhan committed Mar 24, 2017
1 parent b75122a commit b79f0da
Show file tree
Hide file tree
Showing 9 changed files with 241 additions and 687 deletions.
31 changes: 31 additions & 0 deletions .jscs.json
@@ -0,0 +1,31 @@
{
"preset": "node-style-guide",

"validateIndentation": 4,
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
"requireCapitalizedComments": null,
"maximumLineLength": 100,
"validateQuoteMarks": null,
"requireTrailingComma": null,
"disallowTrailingComma": null,
"requireSpacesInsideObjectBrackets": "all",
"requireEarlyReturn": false,
"disallowMultipleVarDecl": null,

"requireCurlyBraces": [
"if",
"else",
"for",
"while",
"do",
"try",
"catch"
],

"excludeFiles": [
"node_modules/**",
"performance/**",
"test/**",
"coverage/**"
]
}
6 changes: 6 additions & 0 deletions .travis.yml
@@ -0,0 +1,6 @@
language: node_js
node_js:
- "4"
- "4.6.0"
- "6"
- "6.9.1"
1 change: 1 addition & 0 deletions README.md
@@ -1,3 +1,4 @@
[![Build Status](https://travis-ci.org/kartotherian/kartotherian-core.svg?branch=master)](https://travis-ci.org/kartotherian/kartotherian-core)
# kartotherian-core

The core components of the Kartotherian maps tile service
Expand Down
4 changes: 3 additions & 1 deletion index.js
Expand Up @@ -2,4 +2,6 @@

module.exports = require('./lib/core');
module.exports.Sources = require('./lib/sources');
module.exports.Err = require('./lib/Err');

// Obsolete, should be removed
module.exports.Err = require('kartotherian-err');
24 changes: 0 additions & 24 deletions lib/Err.js

This file was deleted.

0 comments on commit b79f0da

Please sign in to comment.