Skip to content

Commit

Permalink
chore(deps): upgrade all to latest stable
Browse files Browse the repository at this point in the history
bump all production deps to latest stable versions and regenerate lock file from scratch.

`npm audit` on `master`:
`found 39 vulnerabilities (30 low, 7 moderate, 2 high) in 2645 scanned packages`

`npm audit` on branch:
`found 3 low severity vulnerabilities in 2569 scanned packages`
  • Loading branch information
AviVahl committed Jan 26, 2021
1 parent c667d10 commit 3056999
Show file tree
Hide file tree
Showing 3 changed files with 1,776 additions and 2,447 deletions.
3 changes: 1 addition & 2 deletions lib/cli/config.js
Expand Up @@ -38,8 +38,7 @@ const isModuleNotFoundError = err =>
* returns an object (but could throw)
*/
const parsers = (exports.parsers = {
yaml: filepath =>
require('js-yaml').safeLoad(fs.readFileSync(filepath, 'utf8')),
yaml: filepath => require('js-yaml').load(fs.readFileSync(filepath, 'utf8')),
js: filepath => {
const cwdFilepath = path.resolve(filepath);
try {
Expand Down

0 comments on commit 3056999

Please sign in to comment.