@bayoudhi/moose-lib-serverless 0.3.0 → 0.3.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.
- package/README.md +4 -2
- package/package.json +5 -3
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/
|
|
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
|
|
@@ -114,7 +116,7 @@ These native/C++ dependencies are **not** bundled and will never be loaded:
|
|
|
114
116
|
This package is derived from [MooseStack](https://github.com/514-labs/moosestack) by [Fiveonefour Labs](https://www.fiveonefour.com/), published under the MIT license.
|
|
115
117
|
|
|
116
118
|
- **Original project**: https://github.com/514-labs/moosestack
|
|
117
|
-
- **Fork**: https://github.com/bayoudhi/moosestack
|
|
119
|
+
- **Fork**: https://github.com/bayoudhi/moosestack
|
|
118
120
|
|
|
119
121
|
## License
|
|
120
122
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bayoudhi/moose-lib-serverless",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
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",
|
|
@@ -75,5 +76,6 @@
|
|
|
75
76
|
"type": "git",
|
|
76
77
|
"url": "https://github.com/bayoudhi/moosestack",
|
|
77
78
|
"directory": "packages/moose-lib-serverless"
|
|
78
|
-
}
|
|
79
|
+
},
|
|
80
|
+
"homepage": "https://github.com/bayoudhi/moosestack/tree/main/packages/moose-lib-serverless#readme"
|
|
79
81
|
}
|