Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node: [16.0.0, 18.0.0]
node: [16.13.0, 18.0.0]

steps:
- name: Check out repository
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
environment:
nodejs_version: '16'
nodejs_version: '16.13.0'

install:
- ps: Install-Product node $env:nodejs_version
Expand All @@ -11,4 +11,4 @@ test_script:
- npm --version
- npm test

build: off
build: false
10 changes: 5 additions & 5 deletions bin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,26 +35,26 @@ const cli = meow(
{
flags: {
file: {
alias: 'f',
shortFlag: 'f',
type: 'string',
},
force: {
alias: 'r',
shortFlag: 'r',
default: false,
type: 'boolean',
},
help: {
alias: 'h',
shortFlag: 'h',
default: false,
type: 'boolean',
},
offline: {
alias: 'o',
shortFlag: 'o',
default: false,
type: 'boolean',
},
version: {
alias: 'v',
shortFlag: 'v',
default: false,
type: 'boolean',
},
Expand Down
Loading