Skip to content

Commit

Permalink
docs(changeset):
Browse files Browse the repository at this point in the history
  • Loading branch information
tido64 committed Sep 21, 2023
1 parent 4b13e5c commit 3b23567
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 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

0 comments on commit 3b23567

Please sign in to comment.