Skip to content

Commit

Permalink
chore(deps): update dependency prettier to v3.0.3 (#2696)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Tommy Nguyen <4123478+tido64@users.noreply.github.com>
  • Loading branch information
renovate[bot] and tido64 authored Sep 21, 2023
1 parent 3c65642 commit 65805cc
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 14 deletions.
2 changes: 2 additions & 0 deletions .changeset/cyan-singers-join.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
"*.mdx"
],
"options": {
"organizeImportsSkipDestructiveCodeActions": true,
"proseWrap": "always"
}
}
Expand Down
7 changes: 3 additions & 4 deletions packages/babel-preset-metro-react-native/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
// @ts-check
"use strict";

const { getPreset } = require(require.resolve(
"metro-react-native-babel-preset",
{ paths: [process.cwd()] }
));
const { getPreset } = require(
require.resolve("metro-react-native-babel-preset", { paths: [process.cwd()] })
);

/**
* @typedef {import("@babel/core").ConfigAPI} ConfigAPI
Expand Down
14 changes: 8 additions & 6 deletions packages/eslint-plugin/src/rules/no-export-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,14 @@ function isLikelyInProject(project, modulePath) {
* @returns {{ traverse: (node: Node, options: {}) => void; }}
*/
function makeTraverser() {
const Traverser = require(path.join(
path.dirname(require.resolve("eslint/package.json")),
"lib",
"shared",
"traverser"
));
const Traverser = require(
path.join(
path.dirname(require.resolve("eslint/package.json")),
"lib",
"shared",
"traverser"
)
);
return new Traverser();
}

Expand Down
2 changes: 1 addition & 1 deletion packages/tools-language/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ You can import the entire package, or, to save space, import individual
categories:

```typescript
import * tools from "@rnx-kit/tools-language";
import * as tools from "@rnx-kit/tools-language";
```

<!-- The following table can be updated by running `yarn update-readme` -->
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11600,11 +11600,11 @@ __metadata:
linkType: hard

"prettier@npm:^3.0.0":
version: 3.0.2
resolution: "prettier@npm:3.0.2"
version: 3.0.3
resolution: "prettier@npm:3.0.3"
bin:
prettier: bin/prettier.cjs
checksum: 118b59ddb6c80abe2315ab6d0f4dd1b253be5cfdb20622fa5b65bb1573dcd362e6dd3dcf2711dd3ebfe64aecf7bdc75de8a69dc2422dcd35bdde7610586b677a
checksum: e10b9af02b281f6c617362ebd2571b1d7fc9fb8a3bd17e371754428cda992e5e8d8b7a046e8f7d3e2da1dcd21aa001e2e3c797402ebb6111b5cd19609dd228e0
languageName: node
linkType: hard

Expand Down

0 comments on commit 65805cc

Please sign in to comment.