You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ad096b6 Extract options into config/options.js and config/default.js. In the process, noticed that the -S option was defined twice. One of them had to be remapped, so packard optimize -S (aka --block-size) got changed to -B. Because this is a breaking change to how the CLI is invoked, this version bump must be semver-major. (@othiym23)
593c1bf Fix two small bugs in packard optimize option handling. (@othiym23)
b684ffc Move pls and unpack into src/command, finishing the process of extracting commands from src/cli.js. (@othiym23)
defa12eartists: Move progress bar setup from CLI scaffold into command. (@othiym23)
3133845 Incorporate src/metadata/index.js back in to src/command/unpack.js. The resulting module is huge and unwieldy, but it's no longer experiencing feature envy. (@othiym23)
58ec294 Include src/flac/scan.js into src/command/unpack.js, because it was largely redundant already. (@othiym23)
ecd3aca Hoist are-we-there-yet debugging so that it's logged for every command. (@othiym23)
cecc395 A first step towards simplifying progress group handling. It's going to take a few more. (@othiym23)
0f98607 When printing out banner when there are no files for packard unpack to process, disable the progress bar first, so the message doesn't get overwritten. (@othiym23)
2d9ffcf Handle video files in zipfiles, and just treat them like Files for now. (@othiym23)
e691b54 Share the set of cruft names between the filesystem and zipfile scanners. (@othiym23)
build
b328af3 Include babel-polyfill at the top level to keep Node.js 0.10 happy. (@othiym23)
373399f Remove lib/ before transpiling to clear out dead code. (@othiym23)
c2105e4cruft is a Set, so use a polyfill for Node 0.10. (@othiym23)