@bayoudhi/moose-lib-serverless 0.4.0 → 0.5.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 +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/moose-tspc.js +339 -0
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -153,6 +153,14 @@ These native/C++ dependencies are **not** bundled and will never be loaded:
|
|
|
153
153
|
| `@temporalio/client` | Native Rust bridge; not available in serverless |
|
|
154
154
|
| `redis` | TCP connection pooling incompatible with short-lived functions |
|
|
155
155
|
|
|
156
|
+
|
|
157
|
+
## Moose CLI Compatibility
|
|
158
|
+
|
|
159
|
+
This package ships a patched `moose-tspc` binary, so Moose CLI commands like `moose generate migration` and `moose migrate` work without needing `@514labs/moose-lib` installed.
|
|
160
|
+
|
|
161
|
+
When you install `@bayoudhi/moose-lib-serverless`, `moose-tspc` is automatically placed in `node_modules/.bin/`. The Moose CLI finds it there and uses it to compile your TypeScript models with the correct compiler plugins.
|
|
162
|
+
|
|
163
|
+
No extra configuration is needed beyond the standard [Compiler Plugin Setup](#compiler-plugin-setup) above.
|
|
156
164
|
## Origin
|
|
157
165
|
|
|
158
166
|
This package is derived from [MooseStack](https://github.com/514-labs/moosestack) by [Fiveonefour Labs](https://www.fiveonefour.com/), published under the MIT license.
|