lombok-typescript 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
TypeScript decorators inspired by Project Lombok and common design patterns. Supports legacy `experimentalDecorators` and Stage 3 decorators via separate entry points.
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/lombok-typescript)
|
|
6
|
+
[](https://www.npmjs.com/package/lombok-typescript/v/preview)
|
|
7
7
|
[](https://www.typescriptlang.org/)
|
|
8
8
|
[](https://nodejs.org/)
|
|
9
9
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -13,7 +13,7 @@ TypeScript decorators inspired by Project Lombok and common design patterns. Sup
|
|
|
13
13
|
Install this release:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npm install lombok-typescript@0.
|
|
16
|
+
npm install lombok-typescript@0.6.0
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
Install the current `latest` tag (stable release):
|
|
@@ -58,6 +58,10 @@ npm install lombok-typescript@preview
|
|
|
58
58
|
- @Strategy
|
|
59
59
|
- @State
|
|
60
60
|
- @Command
|
|
61
|
+
- @Memento
|
|
62
|
+
- @Observable
|
|
63
|
+
- @ChainOfResponsibility
|
|
64
|
+
- @Iterable
|
|
61
65
|
|
|
62
66
|
### TypeScript utilities
|
|
63
67
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lombok-typescript",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "TypeScript decorators for
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "TypeScript decorators for observer, memento, chain-of-responsibility, and iteration.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|