Skip to content

Commit

Permalink
chore: update toml ref
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Feb 20, 2024
1 parent e925c31 commit 3b21259
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@

Config parsers for:

[YAML](https://yaml.org/) (with [js-yaml](https://github.com/nodeca/js-yaml)) <br>
[TOML](https://toml.io/) (with [js-toml](https://github.com/sunnyadn/js-toml) <br>
[JSONC](https://github.com/microsoft/node-jsonc-parser) (with [jsonc-parser](https://github.com/microsoft/node-jsonc-parser)) <br>
[JSON5](https://json5.org/) (with [json5](https://github.com/json5/json5)) <br>
[YAML](https://yaml.org/) (with [`js-yaml`](https://github.com/nodeca/js-yaml))

[TOML](https://toml.io/) (with [`toml`](https://github.com/BinaryMuse/toml-node)

[JSONC](https://github.com/microsoft/node-jsonc-parser) (with [`jsonc-parser`](https://github.com/microsoft/node-jsonc-parser))

[JSON5](https://json5.org/) (with [`json5`](https://github.com/json5/json5))

With perfect bundling:

Expand Down Expand Up @@ -97,7 +100,6 @@ Converts a [YAML](https://yaml.org/) string into an object.

Converts a JavaScript value to a [YAML](https://yaml.org/) string.


<!-- /automd -->

## Development
Expand Down
2 changes: 1 addition & 1 deletion src/toml.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { parse } from "toml";

// Source: https://github.com/sunnyadn/js-toml
// Source: https://github.com/BinaryMuse/toml-node

/**
* Converts a [TOML](https://toml.io/) string into an object.
Expand Down

0 comments on commit 3b21259

Please sign in to comment.