Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vfile/to-vfile
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7.2.2
Choose a base ref
...
head repository: vfile/to-vfile
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7.2.3
Choose a head ref
  • 4 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 27, 2021

  1. Update dev-dependencies

    wooorm committed Oct 27, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    e6fcd3e View commit details

Commits on Jan 2, 2022

  1. Fix Buffer type

    Closes GH-20.
    
    Reviewed-by: Christian Murphy <christian.murphy.42@gmail.com>
    Reviewed-by: Titus Wormer <tituswormer@gmail.com>
    remcohaszing authored Jan 2, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c3b41e3 View commit details
  2. Update dev-dependencies

    wooorm committed Jan 2, 2022

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    8fcbd09 View commit details
  3. 7.2.3

    wooorm committed Jan 2, 2022

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    4084077 View commit details
Showing with 5 additions and 4 deletions.
  1. +3 −2 lib/index.js
  2. +2 −2 package.json
5 changes: 3 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -7,8 +7,9 @@
* @typedef {BufferEncoding|{encoding?: null|BufferEncoding, flag?: string}} ReadOptions
* @typedef {BufferEncoding|{encoding?: null|BufferEncoding, mode: Mode?, flag?: string}} WriteOptions
*
* @typedef {string|Uint8Array} Path Path of the file.
* @typedef {Path|URL|Options|VFile} Compatible Things that can be
* @typedef {URL|Value} Path Path of the file.
* Note: `Value` is used here because it’s a smarter `Buffer`
* @typedef {Path|Options|VFile} Compatible Things that can be
* passed to the function.
*/

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "to-vfile",
"version": "7.2.2",
"version": "7.2.3",
"description": "vfile utility to create a vfile from a filepath",
"license": "MIT",
"keywords": [
@@ -48,7 +48,7 @@
"tape": "^5.0.0",
"type-coverage": "^2.0.0",
"typescript": "^4.0.0",
"xo": "^0.44.0"
"xo": "^0.47.0"
},
"scripts": {
"prepack": "npm run build && npm run format",