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.
Files changed (2) hide show
  1. package/README.md +7 -3
  2. 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
- [![npm version](https://img.shields.io/npm/v/lombok-typescript/0.5.0?label=version&logo=npm&color=CB3837)](https://www.npmjs.com/package/lombok-typescript/v/0.5.0)
6
- [![preview](https://img.shields.io/npm/v/lombok-typescript/0.6.0?label=preview&logo=npm&color=CB3837)](https://www.npmjs.com/package/lombok-typescript/v/0.6.0)
5
+ [![npm latest](https://img.shields.io/npm/v/lombok-typescript/latest?label=latest&logo=npm&color=CB3837)](https://www.npmjs.com/package/lombok-typescript)
6
+ [![npm preview](https://img.shields.io/npm/v/lombok-typescript/preview?label=preview&logo=npm&color=CB3837)](https://www.npmjs.com/package/lombok-typescript/v/preview)
7
7
  [![TypeScript](https://img.shields.io/badge/TypeScript-%E2%89%A56.0-blue?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
8
8
  [![Node](https://img.shields.io/badge/node-%E2%89%A522-brightgreen&logo=node.js&logoColor=white)](https://nodejs.org/)
9
9
  [![License](https://img.shields.io/badge/License-MIT-blue.svg)](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.5.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.5.0",
4
- "description": "TypeScript decorators for strategy, state, and command patterns.",
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",