-
-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
88 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ We welcome any type of contribution, not only code. You can help with | |
- QA: file bug reports, the more details you can give the better (e.g. screenshots with the console open) | ||
- Marketing: writing blog posts, howto's, printing stickers, ... | ||
- Community: presenting the project at meetups, organizing a dedicated meetup for the local community, ... | ||
- Code: take a look at the [open issues](https://github.com/Romakita/tsed/blob/master/issues). Even if you can't write code, commenting on them, showing that you care about a given issue matters. It helps us triage them. | ||
- Code: take a look at the [open issues](https://github.com/TypedProject/ts-express-decorators/blob/master/issues). Even if you can't write code, commenting on them, showing that you care about a given issue matters. It helps us triage them. | ||
- Money: we welcome financial contributions in full transparency on our [open collective](https://opencollective.com/tsed). | ||
|
||
## Your First Contribution | ||
|
@@ -28,7 +28,7 @@ We also welcome financial contributions in full transparency on our open collect | |
|
||
## Questions | ||
|
||
If you have any questions, create an [issue](https://github.com/Romakita/tsed/blob/master/issue) (protip: do a quick search first to see if someone else didn't ask the same question before!). You can also reach us at [email protected]. | ||
If you have any questions, create an [issue](https://github.com/TypedProject/ts-express-decorators/blob/master/issue) (protip: do a quick search first to see if someone else didn't ask the same question before!). You can also reach us at [email protected]. | ||
|
||
## How to work on Ts.ED | ||
### Setup | ||
|
@@ -128,7 +128,7 @@ npm run doc:serve | |
## Credits | ||
### Contributors | ||
|
||
<a href="https://github.com/romakita/ts-express-decorators/graphs/contributors"><img src="https://opencollective.com/tsed/contributors.svg?width=890" /></a> | ||
<a href="https://github.com/TypedProject/ts-express-decorators/graphs/contributors"><img src="https://opencollective.com/tsed/contributors.svg?width=890" /></a> | ||
|
||
|
||
### Backers | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ We welcome any type of contribution, not only code. You can help with | |
- QA: file bug reports, the more details you can give the better (e.g. screenshots with the console open) | ||
- Marketing: writing blog posts, howto's, printing stickers, ... | ||
- Community: presenting the project at meetups, organizing a dedicated meetup for the local community, ... | ||
- Code: take a look at the [open issues](https://github.com/Romakita/tsed/blob/master/issues). Even if you can't write code, commenting on them, showing that you care about a given issue matters. It helps us triage them. | ||
- Code: take a look at the [open issues](https://github.com/TypedProject/ts-express-decorators/blob/master/issues). Even if you can't write code, commenting on them, showing that you care about a given issue matters. It helps us triage them. | ||
- Money: we welcome financial contributions in full transparency on our [open collective](https://opencollective.com/tsed). | ||
|
||
## Your First Contribution | ||
|
@@ -53,7 +53,7 @@ We also welcome financial contributions in full transparency on our open collect | |
|
||
## Questions | ||
|
||
If you have any questions, create an [issue](https://github.com/Romakita/tsed/blob/master/issue) (protip: do a quick search first to see if someone else didn't ask the same question before!). You can also reach us at [email protected]. | ||
If you have any questions, create an [issue](https://github.com/TypedProject/ts-express-decorators/blob/master/issue) (protip: do a quick search first to see if someone else didn't ask the same question before!). You can also reach us at [email protected]. | ||
|
||
## How to work on Ts.ED | ||
### Setup | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,4 @@ | ||
# Migration | ||
|
||
See release note on Github: https://github.com/Romakita/ts-express-decorators/releases | ||
See release note on Github: https://github.com/TypedProject/ts-express-decorators/releases | ||
|
||
## From v1.x to v2.x | ||
|
||
- ServerLoader.isAuthenticated hooks is removed. Use ServerLoader.$onAuth hook instead of. | ||
- Interface IPromise is removed. Use Promise instead of. | ||
- Interface ICrud is removed. | ||
- ServerLoader.AcceptMime() is removed. Use GlobalAcceptMimesMiddleware instead of (see documentation https://tsed.io#/docs/middlewares/global-middleware). | ||
- Update [ts-log-debug](https://TypedProject.github.io/ts-log-debug) to the new major version. | ||
|
||
## From v1.3 or under to v1.4 | ||
|
||
The `@types/express` modules dependency has move to devDependencies. So you can have a compilation error with TypeScript. | ||
To resolve it, just run `npm install --save @types/express`. | ||
|
||
If we used the InjectorService. Make you sure we have this in your code: | ||
|
||
* `InjectorService.invoke(target)` has changed to `InjectorService.invoke<T>(target): T`. | ||
* `InjectorService.get(target)` has changed to `InjectorService.get<T>(target): T`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.