Skip to content

Commit 0bdfc6c

Browse files
committed
url fixes
1 parent 12ce5a5 commit 0bdfc6c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/content/posts/003-getting-started-with-inject.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ The package defines four types of lifecycle:
6262

6363
## ~~Extension methods~~
6464

65-
[(We have already said goodbye to extension methods)](/008-byebye-extension-methods/)
65+
[(We have already said goodbye to extension methods)](/posts/008-byebye-extension-methods/)
6666

6767
A simple injector can be easily extended by 3rd party packages with extension methods, just like the FuryStack packages. These extension methods usually provides a _shortcut_ of an instance or sets up a preconfigured explicit instance of a service. You can build clean and nice fluent API-s in that way - you can get the idea from one of the [FuryStack Injector Extensions](https://github.com/furystack/furystack/blob/develop/packages/rest-service/src/injector-extensions.ts)
6868

69-
You find more inject-related articles [here](/tags/inject) or check out the package at NPM
69+
You find more inject-related articles [here](/tags/inject/) or check out the package at NPM
7070

7171
[![npm](https://img.shields.io/npm/v/@furystack/inject.svg?maxAge=3600)](https://www.npmjs.com/package/@furystack/inject)

src/content/posts/007-data-validation-with-rest-and-json-schema.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ excerpt: We have a strongly typed REST API interface with build-time type checki
2222

2323
### Prerequisites
2424

25-
Read the [previous article](/006-getting-started-with-rest) about type-safe REST APIs, if you haven't yet. It will give a huge boost on productivity. Seriously... go go go...
25+
Read the [previous article](/posts/006-getting-started-with-rest/) about type-safe REST APIs, if you haven't yet. It will give a huge boost on productivity. Seriously... go go go...
2626
So, glad you've back. Now let's get down to business...
2727

2828
### Some sad facts about Typescript interfaces - and a possible solution

src/content/posts/009-inject-refactor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ excerpt: Emitting decorator type data is doomed :(
1111

1212
## Why
1313

14-
As you can see, in FuryStack I've tried to take some steps to use only standardized APIs to maintain the supportability. As I started to work with new tools and framework, I've found some bottlenecks. The first big bad was the hacky [extension method support](/008-byebye-extension-methods/) that I've introduced in the beginning of the project, but I've found an another black sheep in the heart of the Typescript ecosystem - Decorator support.
14+
As you can see, in FuryStack I've tried to take some steps to use only standardized APIs to maintain the supportability. As I started to work with new tools and framework, I've found some bottlenecks. The first big bad was the hacky [extension method support](/posts/008-byebye-extension-methods/) that I've introduced in the beginning of the project, but I've found an another black sheep in the heart of the Typescript ecosystem - Decorator support.
1515

1616
In short: "[The emitDecoratorMetadata flag is intentionally not supported.](https://github.com/evanw/esbuild/issues/257#issuecomment-658053616)"
1717

0 commit comments

Comments
 (0)