toposort-class
Advanced tools
Comparing version 0.3.0 to 0.3.1
{ | ||
"name": "toposort", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"main": "./toposort.js", | ||
@@ -5,0 +5,0 @@ "ignore": [ "scripts/**", "test/**" ], |
@@ -16,2 +16,5 @@ module.exports = function( grunt ) { | ||
jscs: { | ||
options: { | ||
config: ".jscsrc" | ||
}, | ||
all: "<%= jshint.all %>" | ||
@@ -18,0 +21,0 @@ }, |
{ | ||
"name": "toposort-class", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "Topological sort of directed acyclic graphs (like dependecy lists)", | ||
@@ -10,3 +10,3 @@ "main": "./toposort.js", | ||
"grunt": "~0.4.2", | ||
"grunt-jscs-checker": "~0.3.2", | ||
"grunt-jscs-checker": "~0.4.1", | ||
"grunt-contrib-jshint": "~0.8.0", | ||
@@ -13,0 +13,0 @@ "grunt-mocha-test": "~0.8.2", |
@@ -75,3 +75,4 @@ !function() { | ||
throw new Error( | ||
"Cyclic dependency found. '" + node + "' is dependent of itself." | ||
"Cyclic dependency found. '" + node + "' is dependent of itself.\n" + | ||
"Dependency Chain: " + predecessors.join( " -> " ) + " => " + node | ||
); | ||
@@ -128,2 +129,2 @@ } | ||
} | ||
}(); | ||
}(); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14372
229