Skip to content

Commit

Permalink
fix: manually release each package
Browse files Browse the repository at this point in the history
  • Loading branch information
crutchcorn committed Sep 2, 2023
1 parent 62f2c5c commit efcb8d9
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 efcb8d9

Please sign in to comment.