Skip to content

Commit

Permalink
Merge pull request #123 from zalando/dependencies-update-20230604-2
Browse files Browse the repository at this point in the history
Dependencies update 20230604
  • Loading branch information
bocytko authored Jun 4, 2023
2 parents 591b135 + 71c90cc commit 73676e3
Show file tree
Hide file tree
Showing 4 changed files with 352 additions and 415 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
node_modules/
.DS_Store
.idea/
.idea/

# yarn
yarn-error.log
2 changes: 1 addition & 1 deletion docs/radar.js
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ function radar_visualization(config) {
var blip = d3.select(this);

// blip link
if (d.active && d.hasOwnProperty("link") && d.link) {
if (d.active && Object.prototype.hasOwnProperty.call(d, "link") && d.link) {
blip = blip.append("a")
.attr("xlink:href", d.link);

Expand Down
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@
"doc": "docs"
},
"devDependencies": {
"browser-sync": "^2.27.7",
"eslint": "^5.7.0",
"browser-sync": "^2.29.3",
"eslint": "^8.42.0",
"htmllint-cli": "^0.0.7",
"socket.io": "^4.4.1"
"socket.io": "^4.6.2"
},
"resolutions": {
"yargs-parser": "21.1.1"
},
"scripts": {
"start": "browser-sync docs -w",
Expand Down
Loading

0 comments on commit 73676e3

Please sign in to comment.