@bayoudhi/moose-lib-serverless 0.6.0 → 0.7.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 +2 -2
- package/dist/moose-runner.js +3988 -0
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -158,7 +158,7 @@ These native/C++ dependencies are **not** bundled and will never be loaded:
|
|
|
158
158
|
|
|
159
159
|
This package includes the full **Moose CLI** (`@514labs/moose-cli`) as a dependency, so commands like `moose generate migration` and `moose migrate` work out of the box — no separate CLI installation needed.
|
|
160
160
|
|
|
161
|
-
It also ships
|
|
161
|
+
It also ships patched `moose-tspc` and `moose-runner` binaries that rewire internal paths to `@bayoudhi/moose-lib-serverless`, so the Moose CLI can compile and serialize your TypeScript models without `@514labs/moose-lib` installed.
|
|
162
162
|
|
|
163
163
|
### CI/CD Usage
|
|
164
164
|
|
|
@@ -170,7 +170,7 @@ steps:
|
|
|
170
170
|
- run: npx moose migrate
|
|
171
171
|
```
|
|
172
172
|
|
|
173
|
-
|
|
173
|
+
All three binaries (`moose`, `moose-tspc`, `moose-runner`) are automatically available in `node_modules/.bin/` after `npm install`.
|
|
174
174
|
|
|
175
175
|
No extra configuration is needed beyond the standard [Compiler Plugin Setup](#compiler-plugin-setup) above.
|
|
176
176
|
|