Skip to content

Commit

Permalink
Update all dependencies (#189)
Browse files Browse the repository at this point in the history
Co-authored-by: Renovate Bot <[email protected]>
  • Loading branch information
ggrossetie and renovate-bot authored Mar 12, 2022
1 parent e8c4554 commit 09588b8
Show file tree
Hide file tree
Showing 5 changed files with 3,761 additions and 138 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
- 12.x
- 14.x
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation-notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Notify Netlify
env:
NETLIFY_WEBHOOK_URL: ${{ secrets.NETLIFY_WEBHOOK_URL }}
Expand Down
5 changes: 4 additions & 1 deletion lib/options.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* global Opal */
const yargs = require('yargs')
const Yargs = require('yargs/yargs')
const asciidoctor = require('@asciidoctor/core')()

const convertOptions = (args, attrs) => {
Expand Down Expand Up @@ -81,6 +81,8 @@ const convertOptions = (args, attrs) => {
if (typeof outFile !== 'undefined') {
if (outFile === '') {
options.to_file = '-'
} else if (outFile === '\'\'') {
options.to_file = '-'
} else {
options.to_file = outFile
options.mkdirs = true
Expand Down Expand Up @@ -118,6 +120,7 @@ class Options {
} else {
this.attributes = []
}
const yargs = Yargs()
this.cmd = yargs
.option('backend', {
alias: 'b',
Expand Down
Loading

0 comments on commit 09588b8

Please sign in to comment.