Skip to content

Commit

Permalink
fix: replace @ltd/j-toml with toml (because of lgpl license)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesKyburz committed Mar 30, 2024
1 parent ac713da commit aa3452b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@
"typescript": "5.4.3"
},
"dependencies": {
"@ltd/j-toml": "1.38.0",
"ajv": "8.12.0",
"better-ajv-errors": "1.2.0",
"toml": "3.0.0",
"yaml-cfn": "0.3.2"
}
}
2 changes: 1 addition & 1 deletion src/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import { yamlParse } from 'yaml-cfn'
import { readFile } from 'node:fs/promises'
import path from 'node:path'
import { parse as tomlParse } from '@ltd/j-toml'
import { parse as tomlParse } from 'toml'
import freeze from './freeze.js'

/** @param { string } templatePath
Expand Down

0 comments on commit aa3452b

Please # to comment.