Skip to content

Commit

Permalink
chore: rebase to v1
Browse files Browse the repository at this point in the history
  • Loading branch information
mdjastrzebski committed May 3, 2024
1 parent ea2eb56 commit 59e0672
Show file tree
Hide file tree
Showing 6 changed files with 1,170 additions and 1,112 deletions.
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
"dependencies": {
"@callstack/reassure-compare": "1.0.0-rc",
"@callstack/reassure-logger": "1.0.0-rc",
"simple-git": "^3.16.0",
"chalk": "4.1.2",
"simple-git": "^3.16.0",
"yargs": "^17.6.2"
},
"devDependencies": {
Expand Down
1 change: 0 additions & 1 deletion packages/logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
"dependencies": {
"chalk": "4.1.2"
},
"devDependencies": {},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
Expand Down
5 changes: 4 additions & 1 deletion packages/measure/src/measure-renders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ export interface MeasureRendersOptions {
writeFile?: boolean;
}

export async function measureRenders(ui: React.ReactElement, options?: MeasureRendersOptions): Promise<MeasureResults> {
export async function measureRenders(
ui: React.ReactElement,
options?: MeasureRendersOptions
): Promise<MeasureRendersResults> {
const stats = await measureRendersInternal(ui, options);

if (options?.writeFile !== false) {
Expand Down
4 changes: 2 additions & 2 deletions packages/reassure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"homepage": "https://github.com/callstack/reassure#readme",
"dependencies": {
"@callstack/reassure-cli": "1.0.0-rc",
"@callstack/reassure-measure": "1.0.0-rc",
"@callstack/reassure-danger": "1.0.0-rc"
"@callstack/reassure-danger": "1.0.0-rc",
"@callstack/reassure-measure": "1.0.0-rc"
},
"react-native-builder-bob": {
"source": "src",
Expand Down
2 changes: 1 addition & 1 deletion test-apps/native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"metro-react-native-babel-preset": "0.77.0",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "0.77.0",
"react-test-renderer": "18.2.0",
"reassure": "1.0.0-rc",
"typescript": "^5.2.2"
Expand Down
Loading

0 comments on commit 59e0672

Please sign in to comment.