Skip to content

Commit

Permalink
Merge pull request #20 from TanStack/release-all-packages
Browse files Browse the repository at this point in the history
fix: manually release each package
  • Loading branch information
crutchcorn authored Sep 2, 2023
2 parents 62f2c5c + efcb8d9 commit 6a3d7e8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/react-store/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,7 @@ export function shallow<T>(objA: T, objB: T) {
}
return true
}

// Force a manual release of the package
// @ts-ignore
const manualRelease = 1;
4 changes: 4 additions & 0 deletions packages/store/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,7 @@ export class Store<
this._flush()
}
}

// Force a manual release of the package
// @ts-ignore
const manualRelease = 1;
4 changes: 4 additions & 0 deletions packages/vue-store/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,7 @@ export function shallow<T>(objA: T, objB: T) {
}
return true
}

// Force a manual release of the package
// @ts-ignore
const manualRelease = 1;

0 comments on commit 6a3d7e8

Please sign in to comment.