@travetto/compiler
Advanced tools
Comparing version 5.0.5 to 5.0.6
{ | ||
"name": "@travetto/compiler", | ||
"version": "5.0.5", | ||
"version": "5.0.6", | ||
"description": "The compiler infrastructure for the Travetto framework", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -12,3 +12,3 @@ import ts from 'typescript'; | ||
const TYPINGS_FOLDER_KEYS = new Set<ManifestModuleFolderType>(['$index', 'support', 'src']); | ||
const TYPINGS_FOLDER_KEYS = new Set<ManifestModuleFolderType>(['$index', 'support', 'src', '$package']); | ||
const TYPINGS_EXT_RE = /[.]d[.][cm]?ts([.]map)?$/; | ||
@@ -265,3 +265,3 @@ | ||
if (TYPINGS_EXT_RE.test(outputFile)) { | ||
if (TYPINGS_EXT_RE.test(outputFile) || outputFile.endsWith('package.json')) { | ||
this.#writeExternalTypings(location, text, bom); | ||
@@ -268,0 +268,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
89637