Skip to content

Commit 6130ee5

Browse files
committed
chore(*): update packages & typedoc
1 parent 90382b4 commit 6130ee5

File tree

9 files changed

+185
-176
lines changed

9 files changed

+185
-176
lines changed

package-lock.json

Lines changed: 172 additions & 162 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@
3939
"@sclable/nestjs-storage": "file:packages/storage"
4040
},
4141
"devDependencies": {
42-
"@angular-devkit/core": "17.3.6",
43-
"@angular-devkit/schematics": "17.3.6",
42+
"@angular-devkit/core": "18.2.3",
43+
"@angular-devkit/schematics": "18.2.3",
4444
"@azure/abort-controller": "1.1.0",
4545
"@azure/service-bus": "7.9.4",
4646
"@azure/storage-blob": "12.17.0",
4747
"@commitlint/cli": "19.3.0",
4848
"@commitlint/config-conventional": "19.2.2",
4949
"@commitlint/prompt-cli": "19.3.0",
50-
"@nestjs/apollo": "12.1.0",
50+
"@nestjs/apollo": "12.2.0",
5151
"@nestjs/common": "10.3.10",
5252
"@nestjs/core": "10.3.10",
5353
"@nestjs/jwt": "10.2.0",
@@ -91,10 +91,10 @@
9191
"shelljs": "0.8.5",
9292
"supertest": "7.0.0",
9393
"ts-jest": "29.1.2",
94-
"typedoc": "0.25.13",
95-
"typedoc-github-wiki-theme": "1.1.0",
96-
"typedoc-plugin-markdown": "3.17.1",
97-
"typescript": "5.4.5"
94+
"typedoc": "0.26.7",
95+
"typedoc-github-wiki-theme": "2.0.0",
96+
"typedoc-plugin-markdown": "4.2.7",
97+
"typescript": "5.6.2"
9898
},
9999
"commitlint": {
100100
"extends": [

packages/async-provider/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function createAsyncProvider<T>(provider: AsyncProvider<T>, token: string): Prov
5151
5252
@param provider an async provider
5353
@param token token for the provider (use this token with the `@Inject(<token>)` decorator)
54-
@typeparam T type of the object provided by this provider
54+
@typeParam T type of the object provided by this provider
5555
*/
5656
export function createAsyncProviders<T>(
5757
provider: AsyncProvider<T>,

packages/es-cqrs-schematics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"fs-extra": "^11.0.0",
3333
"pluralize": "^8.0.0",
3434
"prettier": "2.8.8",
35-
"ts-morph": "^21.0.0"
35+
"ts-morph": "^23.0.0"
3636
},
3737
"peerDependencies": {
3838
"@angular-devkit/core": ">=16.0.0",

packages/es-cqrs/src/aggregate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class Aggregate extends AggregateRoot<Event> implements EventSourcedAggre
7878
*
7979
* @param event event class
8080
* @param data event data
81-
* @typeparam T event data type
81+
* @typeParam T event data type
8282
*/
8383
protected applyEvent<T>(event: EventConstructor, data: T): void {
8484
this.apply(

packages/es-cqrs/src/event-store/event-store-options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export interface EventStoreOptions {
1010
snapshotInterval?: number
1111

1212
/**
13-
* Enables logging to the @nestjs logger
13+
* Enables logging to the `@nestjs` logger
1414
*/
1515
logging?: boolean
1616

packages/es-cqrs/src/event-store/replay.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export class ReplayService {
6363

6464
/**
6565
* @param replayOptions replay options
66-
* @retuns number of events replayed
66+
* @returns number of events replayed
6767
*/
6868
public async replay(replayOptions?: ReplayOptions): Promise<number> {
6969
const queueById = uuidv4() // events have to have the same id so that they are run in a single queue

packages/es-cqrs/src/repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export function getRepositoryToken<T extends Aggregate>(
1818
* store, but to speed things up, it first tries to load up a snapshot of the aggregate. It is also responsible for
1919
* persisting the aggregate by saving its events.
2020
*
21-
* @typeparam T an [[Aggregate]]
21+
* @typeParam T an [[Aggregate]]
2222
*/
2323
@Injectable()
2424
export class Repository<T extends Aggregate> {

typedoc.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"typedoc-plugin-markdown",
44
"typedoc-github-wiki-theme"
55
],
6-
"theme": "github-wiki",
76
"out": "docs",
87
"tsconfig": "./tsconfig.json",
98
"entryPoints": [

0 commit comments

Comments
 (0)