@travetto/manifest
Advanced tools
Comparing version 5.0.3 to 5.0.4
{ | ||
"name": "@travetto/manifest", | ||
"version": "5.0.3", | ||
"version": "5.0.4", | ||
"description": "Support for project indexing, manifesting, along with file watching", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -20,2 +20,3 @@ import { existsSync, readFileSync } from 'node:fs'; | ||
const OUTPUT_FOLDER = '.trv/output'; | ||
const TYPES_FOLDER = '.trv/types'; | ||
@@ -137,3 +138,2 @@ const WS_ROOT: Record<string, Workspace> = {}; | ||
const build = workspace.travetto?.build ?? {}; | ||
const toolFolder = build.toolFolder ?? TOOL_FOLDER; | ||
@@ -154,3 +154,4 @@ return { | ||
outputFolder: build.outputFolder ?? OUTPUT_FOLDER, | ||
toolFolder | ||
toolFolder: build.toolFolder ?? TOOL_FOLDER, | ||
typesFolder: build.typesFolder ?? TYPES_FOLDER | ||
}, | ||
@@ -157,0 +158,0 @@ main: { |
@@ -29,2 +29,4 @@ import type { NodeModuleType, NodePackageManager } from './common'; | ||
toolFolder: string; | ||
/** Location for type outputs */ | ||
typesFolder: string; | ||
}; | ||
@@ -31,0 +33,0 @@ main: { |
@@ -49,2 +49,3 @@ import type { ManifestModuleRole, NodeModuleType } from './common'; | ||
watchIgnores?: string[]; | ||
typesFolder?: string; | ||
}; | ||
@@ -51,0 +52,0 @@ }; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
61889
1383