Skip to content

Commit

Permalink
build(deps-dev): bump prettier from 3.0.3 to 3.2.5 (#488)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump prettier from 3.0.3 to 3.2.5

Bumps [prettier](https://github.com/prettier/prettier) from 3.0.3 to 3.2.5.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.0.3...3.2.5)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* npm run prettier

* Einstein is now known as "German-born physicist (1879–1955)" :-)

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: macbre <[email protected]>
  • Loading branch information
dependabot[bot] and macbre authored Feb 27, 2024
1 parent 12e6054 commit 27d5160
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
5 changes: 2 additions & 3 deletions lib/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,8 @@ function doRequest(params, callback, method, done) {
postBody.push(`--${boundary}--`);

// encode post data
options.headers[
"content-type"
] = `multipart/form-data; boundary=${boundary}`;
options.headers["content-type"] =
`multipart/form-data; boundary=${boundary}`;
options.body = postBody;

params = {};
Expand Down
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 test/mediawiki-api-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe("MediaWiki API", () => {
client.getArticleProperties(TEST_ARTICLE, (err, props) => {
expect(err).toBeNull();
expect(props.wikibase_item).toEqual("Q937");
expect(props["wikibase-shortdesc"]).toContain("scientist");
expect(props["wikibase-shortdesc"]).toContain("physicist");

done();
});
Expand Down

0 comments on commit 27d5160

Please sign in to comment.