Skip to content

Commit

Permalink
Upgrade dependencies (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggrossetie committed Jun 10, 2023
1 parent 65a3574 commit ca5a358
Show file tree
Hide file tree
Showing 17 changed files with 5,123 additions and 14,990 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
os:
- ubuntu-latest
node-version:
- 14.x
- 15.x
- 18
- 20
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -41,8 +41,8 @@ jobs:
strategy:
matrix:
node-version:
- 14.x
- 15.x
- 18
- 20
steps:
- uses: actions/checkout@v3
- name: Set up Node ${{ matrix.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions app/css/options.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const { refreshOptions, enableDisableRender } = ((webExtension) => {
}

const notifyTab = (tab, status) => {
webExtension.tabs.sendMessage(tab.id, { status: status })
webExtension.tabs.sendMessage(tab.id, { status })
}

const findActiveTab = (callback) => {
Expand Down
3 changes: 3 additions & 0 deletions app/js/converter.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,9 @@ asciidoctor.browser.converter = (webExtension, Constants, Settings) => {
exists: (_) => {
return false
},
dirname: (_) => {
// no-op
},
add: (_) => {
// no-op
}
Expand Down
2 changes: 1 addition & 1 deletion app/js/module/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ asciidoctor.browser.settings = (webExtension, Constants) => {
} else {
name = 'Edge'
}
return { name: name }
return { name }
}

return module
Expand Down
2 changes: 1 addition & 1 deletion app/js/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ const webExtension = typeof browser === 'undefined' ? chrome : browser
classes = ['notification', 'is-small', 'is-warning']
message = `Existing ${type} <b>${name}</b> has been replaced!`
}
return { classes: classes, message: message }
return { classes, message }
}

const showNotification = (element, notification) => {
Expand Down
2 changes: 1 addition & 1 deletion app/js/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ window.MathJax = {
}, {})).map(value => value.split(','))
const data = {
labels: node.dataset.chartLabels.split(','),
series: series
series
}
Chartist[node.dataset.chartType](node, data, options)
})
Expand Down
2 changes: 1 addition & 1 deletion app/js/vendor/highlight.js/languages/1c.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/js/vendor/highlight.js/languages/isbl.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit ca5a358

Please sign in to comment.