Skip to content

Commit

Permalink
bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
blutorange committed May 25, 2018
1 parent 4475679 commit e27dcfc
Show file tree
Hide file tree
Showing 18 changed files with 1,947 additions and 1,573 deletions.
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
.vscode
.nyc_output
build
dist
coverage
sandbox.ts

dist.js
dist.min.js
main.js
main.d.ts

Expand Down
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.vscode
.nyc_output
dist/test
coverage

sandbox.ts

# ---> Linux
Expand Down
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Current TS File",
"type": "node",
"request": "launch",
"args": ["${relativeFile}"],
"runtimeArgs": ["--nolazy", "-r", "ts-node/register"],
"sourceMaps": true,
"cwd": "${workspaceRoot}",
"protocol": "inspector",
}
]
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"editor.codeActionsOnSave": {
"source.organizeImports": true,
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Keeps a directed acyclic graph topologically sorted each time you add an edge or

# Documenation

[Documentation for all methods with examples.](https://blutorange.github.io/js-kagura/)
[Documentation for all methods with examples.](https://blutorange.github.io/js-incremental-topsort/)

# Install

Expand Down
Loading

0 comments on commit e27dcfc

Please sign in to comment.