Skip to content

Commit

Permalink
Merge pull request #321 from Fdawgs/build/deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Sep 21, 2023
2 parents 07510c1 + a925c05 commit 0f6697a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
13 changes: 10 additions & 3 deletions README.md
Expand Up @@ -92,9 +92,16 @@ const options = {
outputHtml: true,
};

unRTF.convert(file, options).then((res) => {
console.log(res);
});
unRTF
.convert(file, options)
.then((res) => {
console.log(res);
return res;
})
.catch((err) => {
console.error(err);
throw err;
});
```

## Contributing
Expand Down
12 changes: 6 additions & 6 deletions package.json
Expand Up @@ -73,22 +73,22 @@
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/jest": "^29.5.5",
"eslint": "^8.47.0",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsdoc": "^46.4.6",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-regexp": "^1.15.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-security-node": "^1.1.1",
"husky": "^8.0.3",
"is-html": "^2.0.0",
"jest": "^29.6.2",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^8.0.0",
"license-checker": "^25.0.1",
"prettier": "^3.0.2",
"prettier": "^3.0.3",
"spdx-copyleft": "^1.0.0",
"typescript": "^5.2.2"
},
Expand Down

0 comments on commit 0f6697a

Please sign in to comment.