Skip to content

Commit

Permalink
feat: support up-to-date d3 versions (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnwalley committed May 14, 2023
1 parent f3ea741 commit 5e96c70
Show file tree
Hide file tree
Showing 10 changed files with 1,341 additions and 1,674 deletions.
13 changes: 13 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,13 @@
{
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 11
},
"env": {
"es6": true
},
"rules": {
"no-cond-assign": 0
}
}
8 changes: 0 additions & 8 deletions .eslintrc.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [15.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -31,7 +31,7 @@ You must include the [d3 library](http://d3js.org/) before including the slider
The d3-simple-slider functionality is added to the `d3` global object.

```html
<script src="./d3.v6.js"></script>
<script src="./d3.v7.js"></script>
<script src="./d3-simple-slider.js"></script>

<p id="value"></p>
Expand Down Expand Up @@ -66,7 +66,7 @@ You can add the latest version of [d3-simple-slider hosted on unpkg](https://unp
The d3-simple-slider functionality is added to the `d3` global object.

```html
<script src="https://d3js.org/d3.v6.js"></script>
<script src="https://d3js.org/d3.v7.js"></script>
<script src="https://unpkg.com/d3-simple-slider"></script>

<p id="value"></p>
Expand Down

0 comments on commit 5e96c70

Please sign in to comment.