Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[@types/bl] update bl types to v5 #52236

Merged
merged 12 commits into from
Apr 9, 2021

Commits on Apr 7, 2021

  1. [@types/bl] update bl types to v5

    The bl module has a file called `BufferList.js` that is the buffer list
    without node streams, the idea being you can use it in the browser without
    having to pull in a readable streams implementation, which has become more
    necessary since webpack 5 stopped bundling shims for node internals.
    
    The main `bl.js` exports a class that extends both the buffer list and
    the node Duplex stream.  It also has named exports for `BufferListStream`
    (the same as the default export) and `BufferList` (the same as the class
    from `BufferList.js`).
    
    I've attempted to represent them here.  TS doesn't have multiple inheritance
    so I'm not sure how to represent the `BufferListStream` class without
    duplicating the methods of `BufferList`.
    achingbrain committed Apr 7, 2021
    Configuration menu
    Copy the full SHA
    77c02f5 View commit details
    Browse the repository at this point in the history
  2. add package.json for bl

    achingbrain committed Apr 7, 2021
    Configuration menu
    Copy the full SHA
    5431b26 View commit details
    Browse the repository at this point in the history
  3. update dep path

    achingbrain committed Apr 7, 2021
    Configuration menu
    Copy the full SHA
    da784f0 View commit details
    Browse the repository at this point in the history
  4. update dep path

    achingbrain committed Apr 7, 2021
    Configuration menu
    Copy the full SHA
    034ecf0 View commit details
    Browse the repository at this point in the history
  5. remove package.json

    achingbrain committed Apr 7, 2021
    Configuration menu
    Copy the full SHA
    d5e5eb9 View commit details
    Browse the repository at this point in the history
  6. remove named exports

    achingbrain committed Apr 7, 2021
    Configuration menu
    Copy the full SHA
    5708bab View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2021

  1. Configuration menu
    Copy the full SHA
    ed63713 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2021

  1. Configuration menu
    Copy the full SHA
    a014520 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    92a8f4b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c1a8757 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3383b02 View commit details
    Browse the repository at this point in the history
  5. apply prettier

    achingbrain committed Apr 9, 2021
    Configuration menu
    Copy the full SHA
    da6f9c1 View commit details
    Browse the repository at this point in the history