@travetto/manifest 3.1.0-rc.2 → 3.1.0-rc.3
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 +5 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -153,9 +153,9 @@ export function watchFolders(
|
|
|
153
153
|
"toolFolder": ".trv_build",
|
|
154
154
|
"compilerFolder": ".trv_compiler",
|
|
155
155
|
"packageManager": "npm",
|
|
156
|
-
"version": "
|
|
156
|
+
"version": "x.x.x",
|
|
157
157
|
"description": "Support for project indexing, manifesting, along with file watching",
|
|
158
|
-
"frameworkVersion": "
|
|
158
|
+
"frameworkVersion": "x.x.x",
|
|
159
159
|
"modules": {
|
|
160
160
|
"@travetto/manifest": {
|
|
161
161
|
"main": true,
|
|
@@ -230,6 +230,9 @@ The context contains:
|
|
|
230
230
|
* The location where the intermediate compiler will be created. Defaults to: `.trv_compiler`
|
|
231
231
|
* The location where tooling will be able to write to. Defaults to: `.trv_output`
|
|
232
232
|
* Which package manager is in use [Npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) or [Yarn](https://yarnpg.com)
|
|
233
|
+
* The main module version
|
|
234
|
+
* The main module description
|
|
235
|
+
* The framework version (based on @travetto/manifest)
|
|
233
236
|
|
|
234
237
|
### Modules
|
|
235
238
|
The modules represent all of the [Travetto](https://travetto.dev)-aware dependencies (including dev dependencies) used for compiling, testing and executing. A prod-only version is produced when packaging the final output. Each module contains:
|