forked from dagrejs/graphlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Build two bundles: graphlib.js and graphlib.core.js - Use karma to verify the bundles - Prepare to use this repo as the canonical source for bower - Remove some unused code, like src/watch.js
- Loading branch information
Showing
29 changed files
with
9,463 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
/build | ||
/dist | ||
/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
/browser.js | ||
/bench | ||
/build | ||
/dist | ||
/doc | ||
/Makefile | ||
/node_modules | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
script: make test | ||
script: KARMA_OPTS="--browsers Firefox,PhantomJS" make -e test | ||
before_script: | ||
- export DISPLAY=:99.0 | ||
- sh -e /etc/init.d/xvfb start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "graphlib", | ||
"version": "0.8.4-pre", | ||
"main": [ | ||
"dist/graphlib.core.js", | ||
"dist/graphlib.core.min.js" | ||
], | ||
"ignore": [ | ||
"README.md" | ||
], | ||
"dependencies": { | ||
"lodash": "2.4.1" | ||
} | ||
} |
Oops, something went wrong.