@bayoudhi/moose-lib-serverless 0.3.0 → 0.3.1

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 +3 -1
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -33,7 +33,7 @@ Add the compiler plugin and typia transform to your `tsconfig.json`:
33
33
  "compilerOptions": {
34
34
  "plugins": [
35
35
  {
36
- "transform": "@bayoudhi/moose-lib-serverless/dist/compilerPlugin.js"
36
+ "transform": "@bayoudhi/moose-lib-serverless/compilerPlugin"
37
37
  },
38
38
  {
39
39
  "transform": "typia/lib/transform"
@@ -43,6 +43,8 @@ Add the compiler plugin and typia transform to your `tsconfig.json`:
43
43
  }
44
44
  ```
45
45
 
46
+ Both `@bayoudhi/moose-lib-serverless/compilerPlugin` and `@bayoudhi/moose-lib-serverless/dist/compilerPlugin.js` work — use whichever you prefer.
47
+
46
48
  ### 2. Install ts-patch
47
49
 
48
50
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bayoudhi/moose-lib-serverless",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Serverless-compatible subset of @514labs/moose-lib for AWS Lambda and edge runtimes. Provides OlapTable, Stream, Workflow, View, and other Moose SDK classes without native C++ dependencies (Kafka, Temporal). Includes a patched compiler plugin for type-driven schema injection.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -18,7 +18,8 @@
18
18
  },
19
19
  "./compilerPlugin": {
20
20
  "require": "./dist/compilerPlugin.js"
21
- }
21
+ },
22
+ "./dist/compilerPlugin.js": "./dist/compilerPlugin.js"
22
23
  },
23
24
  "files": [
24
25
  "dist",