-
Notifications
You must be signed in to change notification settings - Fork 607
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into order-options
- Loading branch information
Showing
68 changed files
with
12,555 additions
and
20,218 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,13 +1,18 @@ | ||
{ | ||
"extends": "eslint:recommended", | ||
"env": { | ||
"browser": true, | ||
"node": true, | ||
"mocha": true | ||
"es6": true, | ||
"mocha": true, | ||
"node": true | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": "latest" | ||
}, | ||
"extends": "eslint:recommended", | ||
"rules": { | ||
"indent": [ "error", 2 ], | ||
"linebreak-style": [ "error", "unix" ], | ||
"no-prototype-builtins": 0, | ||
"semi": [ "error", "always" ] | ||
} | ||
} |
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,38 @@ | ||
name: Build Status | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
node-version: [18.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: browser-actions/setup-firefox@latest | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
cache-dependency-path: package-lock.json | ||
|
||
- name: Install dependencies | ||
run: | | ||
npm install | ||
sudo apt-get install graphviz xvfb | ||
- name: Lint | ||
run: | | ||
make lint | ||
- name: Test | ||
run: | | ||
KARMA_OPTS="--browsers Firefox" xvfb-run --auto-servernum make -e test |
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,4 @@ | ||
build/ | ||
node_modules/ | ||
tmp/ | ||
/.nyc_output |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,14 +1,15 @@ | ||
# dagre - Graph layout for JavaScript | ||
|
||
[![Build Status](https://secure.travis-ci.org/dagrejs/dagre.svg?branch=master)](http://travis-ci.org/dagrejs/dagre) | ||
[![Build Status](https://github.com/dagrejs/dagre/workflows/Build%20Status/badge.svg?branch=master)](https://github.com/dagrejs/dagre/actions?query=workflow%3A%22Build+Status%22) | ||
[![npm](https://img.shields.io/npm/v/dagre.svg)](https://www.npmjs.com/package/dagre) | ||
|
||
Dagre is a JavaScript library that makes it easy to lay out directed graphs on | ||
the client-side. | ||
|
||
For more details, including examples and configuration options, please see our | ||
[wiki](https://github.com/dagrejs/dagre/wiki). | ||
Dagre is a JavaScript library that makes it easy to lay out directed graphs on the client-side. | ||
|
||
For more details, including examples and configuration options, please see our [wiki](https://github.com/dagrejs/dagre/wiki). | ||
|
||
There are 2 versions on NPM, but only [the one in the DagreJs org](https://www.npmjs.com/package/@dagrejs/dagre) is receiving updates right now. | ||
|
||
## License | ||
|
||
dagre is licensed under the terms of the MIT License. See the LICENSE file | ||
for details. | ||
dagre is licensed under the terms of the MIT License. See the LICENSE file for details. |
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
Oops, something went wrong.