silgi 0.37.8 → 0.37.9
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/dist/cli/build.mjs +1 -1
- package/dist/cli/index.mjs +1 -1
- package/package.json +1 -1
package/dist/cli/build.mjs
CHANGED
|
@@ -700,7 +700,7 @@ async function verifyDirectoryCaseSensitivity(directoryPath, rootDirectory) {
|
|
|
700
700
|
} catch {
|
|
701
701
|
}
|
|
702
702
|
}
|
|
703
|
-
async function extractExportEntitiesFromFile(absoluteFilePath, functionExportNames = ["createSchema", "createService", "createRoute"], interfaceExtendsNames = ["ExtendShared", "ExtendContext"]) {
|
|
703
|
+
async function extractExportEntitiesFromFile(absoluteFilePath, functionExportNames = ["createSchema", "createService", "createRoute", "createShared"], interfaceExtendsNames = ["ExtendShared", "ExtendContext"]) {
|
|
704
704
|
const exportEntities = [];
|
|
705
705
|
const fileContent = await readFile(absoluteFilePath, "utf-8");
|
|
706
706
|
const parsed = await parseAsync(absoluteFilePath, fileContent);
|
package/dist/cli/index.mjs
CHANGED