Skip to content

Commit 48de1bf

Browse files
committed
feat: add changesets
1 parent ecffc9b commit 48de1bf

File tree

7 files changed

+1438
-28
lines changed

7 files changed

+1438
-28
lines changed

.changeset/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": ["@changesets/changelog-github", { "repo": "darkbasic/mikro-orm-dataloaders" }],
4+
"commit": false,
5+
"linked": [],
6+
"access": "public",
7+
"baseBranch": "main",
8+
"updateInternalDependencies": "patch",
9+
"ignore": [
10+
"root",
11+
"graphql-example"
12+
],
13+
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
14+
"onlyUpdatePeerDependentsWhenOutOfRange": true
15+
},
16+
"snapshot": {
17+
"useCalculatedVersion": true,
18+
"prereleaseTemplate": "{tag}-{datetime}-{commit}"
19+
}
20+
}

.changeset/sixty-bobcats-pump.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
'@accounts/module-core': major
3+
'@accounts/module-magic-link': major
4+
'@accounts/module-mikro-orm': major
5+
'@accounts/module-mongo': major
6+
'@accounts/module-password': major
7+
'@accounts/module-typeorm': major
8+
'@accounts/apollo-link': major
9+
'@accounts/client': major
10+
'@accounts/client-magic-link': major
11+
'@accounts/client-password': major
12+
'@accounts/mikro-orm': major
13+
'@accounts/mongo': major
14+
'@accounts/mongo-magic-link': major
15+
'@accounts/mongo-password': major
16+
'@accounts/mongo-sessions': major
17+
'@accounts/redis': major
18+
'@accounts/database-tests': major
19+
'@accounts/typeorm': major
20+
'@accounts/error': major
21+
'@accounts/express-session': major
22+
'@accounts/graphql-client': major
23+
'@accounts/magic-link': major
24+
'@accounts/oauth': major
25+
'@accounts/oauth-instagram': major
26+
'@accounts/oauth-twitter': major
27+
'@accounts/password': major
28+
'@accounts/rest-client': major
29+
'@accounts/rest-express': major
30+
'@accounts/server': major
31+
'@accounts/two-factor': major
32+
'@accounts/types': major
33+
'accounts-js': major
34+
---
35+
36+
Release 1.0

examples/graphql/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"extends": "../../tsconfig.json",
3-
"include": ["src/**/*"]
3+
"include": ["src/**/*"],
4+
"exclude": ["node_modules"]
45
}

package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
"examples/*"
77
],
88
"scripts": {
9-
"build": "yarn workspace mikro-orm-find-dataloader run build"
9+
"build": "yarn workspace mikro-orm-find-dataloader run build",
10+
"version": "yarn changeset version && yarn install --immutable",
11+
"release": "yarn run compile && yarn changeset publish"
1012
},
1113
"version": "1.0.0",
1214
"description": "Additional dataloaders for MikroORM",
@@ -17,6 +19,8 @@
1719
"license": "MIT",
1820
"packageManager": "[email protected]",
1921
"devDependencies": {
22+
"@changesets/changelog-github": "^0.4.8",
23+
"@changesets/cli": "^2.26.2",
2024
"@types/eslint": "^8.44.7",
2125
"@types/node": "^20.9.1",
2226
"@typescript-eslint/eslint-plugin": "^6.11.0",

packages/find/src/findDataloader.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { type FilterQueryDataloader } from "./EntityDataLoader";
1313
import { type PartialBy } from "./types";
1414

1515
export function groupPrimaryKeysByEntity<T extends AnyEntity<T>>(
16-
refs: ReadonlyArray<Reference<T>>,
16+
refs: Array<Reference<T>>,
1717
): Map<string, Set<Primary<T>>> {
1818
const map = new Map<string, Set<Primary<T>>>();
1919
for (const ref of refs) {
@@ -29,7 +29,7 @@ export function groupPrimaryKeysByEntity<T extends AnyEntity<T>>(
2929
}
3030

3131
export function groupInversedOrMappedKeysByEntity<T extends AnyEntity<T>>(
32-
collections: ReadonlyArray<Collection<T, AnyEntity>>,
32+
collections: Array<Collection<T, AnyEntity>>,
3333
): Map<string, Map<string, Set<Primary<T>>>> {
3434
const entitiesMap = new Map<string, Map<string, Set<Primary<T>>>>();
3535
for (const col of collections) {
@@ -219,7 +219,7 @@ export interface DataloaderFind<K extends object, Hint extends string = never, F
219219
}
220220

221221
export function groupFindQueries(
222-
dataloaderFinds: ReadonlyArray<PartialBy<DataloaderFind<any, any>, "filtersAndKeys">>,
222+
dataloaderFinds: Array<PartialBy<DataloaderFind<any, any>, "filtersAndKeys">>,
223223
): Map<string, [FilterQueryDataloader<any>, { populate?: true | Set<any> }?]> {
224224
const queriesMap = new Map<string, [FilterQueryDataloader<any>, { populate?: true | Set<any> }?]>();
225225
for (const dataloaderFind of dataloaderFinds) {
@@ -242,8 +242,8 @@ export function groupFindQueries(
242242
}
243243

244244
export function assertHasNewFilterAndMapKey(
245-
dataloaderFinds: ReadonlyArray<PartialBy<DataloaderFind<any, any>, "filtersAndKeys">>,
246-
): asserts dataloaderFinds is ReadonlyArray<DataloaderFind<any, any>> {
245+
dataloaderFinds: Array<PartialBy<DataloaderFind<any, any>, "filtersAndKeys">>,
246+
): asserts dataloaderFinds is Array<DataloaderFind<any, any>> {
247247
/* if (dataloaderFinds.some((el) => el.key == null || el.newFilter == null)) {
248248
throw new Error("Missing key or newFilter");
249249
} */

0 commit comments

Comments
 (0)