@rotomeca/rop 5.0.0 → 5.0.2

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 +2 -2
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -111,11 +111,11 @@ Perfect for **Side Effects** (logging, notifications) without polluting your bus
111
111
  saveData(data: any) { ... }
112
112
  ```
113
113
 
114
- **Note:** To use the decorators, ensure you have enabled experimentalDecorators in your tsconfig.json:
114
+ **Note:** To use the decorators, ensure you have disabled experimentalDecorators in your tsconfig.json:
115
115
  ```json
116
116
  {
117
117
  "compilerOptions": {
118
- "experimentalDecorators": true
118
+ "experimentalDecorators": false
119
119
  }
120
120
  }
121
121
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rotomeca/rop",
3
- "version": "5.0.0",
3
+ "version": "5.0.2",
4
4
  "type": "module",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -25,6 +25,10 @@
25
25
  "author": "Rotomeca",
26
26
  "license": "ISC",
27
27
  "description": "A robust, lightweight, and type-safe implementation of Railway Oriented Programming (ROP) for TypeScript.",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/Rotomeca/node-rop.git"
31
+ },
28
32
  "devDependencies": {
29
33
  "@typescript-eslint/parser": "^5.62.0",
30
34
  "eslint": "^8.57.1",