-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(msar)!: download is back to status quo
- AuthenticatedFetch now extends PuppteerSession.Authenticated, and each download is a baseFork() - Reorganized parameters to clean up redundancies and pass CLI arguments more consistently throughout - Updated AuthenticatedFetch, HTTPFetch debugging output for greater consistency - Followed `defaults` model in Download.args modules, as in other *.args modules BREAKING: —haltOnError replaced by standard —ignoreErrors (or —no-ignoreErrors)
- Loading branch information
Showing
9 changed files
with
130 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
export * from './args/flags.js'; | ||
export * from './args/options.js'; | ||
import { defaults as flagDefaults } from './args/flags.js'; | ||
import { defaults as optionsDefaults } from './args/options.js'; | ||
|
||
export { flags } from './args/flags.js'; | ||
export { options } from './args/options.js'; | ||
export * from './args/parse.js'; | ||
|
||
export const defaults = { ...flagDefaults, ...optionsDefaults }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
import cli from '@battis/qui-cli'; | ||
import * as common from '../../../common.js'; | ||
|
||
export const flags = { | ||
...common.args.flags, | ||
haltOnError: { | ||
description: `Halt on an error downloading a supporting file (default: ${cli.colors.value('false')}` | ||
} | ||
}; | ||
export const defaults = {}; | ||
|
||
export const flags = common.args.flags; |
Oops, something went wrong.