Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

feat: --body supports reading from STDIN #23

Merged
merged 7 commits into from
Jan 26, 2024
Merged

feat: --body supports reading from STDIN #23

merged 7 commits into from
Jan 26, 2024

Commits on Jan 6, 2024

  1. chore: bump deps

    cristiand391 committed Jan 6, 2024
    Configuration menu
    Copy the full SHA
    4280f15 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

  1. chore: bump again

    cristiand391 committed Jan 23, 2024
    Configuration menu
    Copy the full SHA
    c2794d2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    199a1fa View commit details
    Browse the repository at this point in the history
  3. test: add U

    cristiand391 committed Jan 23, 2024
    Configuration menu
    Copy the full SHA
    9c1c08d View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2024

  1. Configuration menu
    Copy the full SHA
    4717ff5 View commit details
    Browse the repository at this point in the history
  2. chore: update readme

    [skip ci]
    cristiand391 committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    4c1d3c5 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2024

  1. fix: manually read from stdin

    If you do `flag.allowStdin: true` then oclif will read from stdin for
    you if the value is `-`, so there's no way to know if the flag value
    came from stdin or the user specified a file path (here we need to read
    the file).
    
    I don't like having another specific flag just to read from stdin so I
    made this a string flag and handle reading from stdin/file in
    `flag.parse`.
    cristiand391 committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    e55c119 View commit details
    Browse the repository at this point in the history