silgi 0.29.16 → 0.29.17
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/index.mjs +1 -1
- package/dist/cli/silgi.mjs +8 -7
- package/package.json +1 -1
package/dist/cli/index.mjs
CHANGED
package/dist/cli/silgi.mjs
CHANGED
|
@@ -1806,13 +1806,14 @@ async function scanExportFile(silgi) {
|
|
|
1806
1806
|
if (type === "schema") {
|
|
1807
1807
|
options.schemas.push(_name);
|
|
1808
1808
|
}
|
|
1809
|
-
options.
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1809
|
+
options.addImportItem({
|
|
1810
|
+
specifier: relativeWithDot(silgi.options.silgi.serverDir, path),
|
|
1811
|
+
imports: [
|
|
1812
|
+
{
|
|
1813
|
+
name: exportName,
|
|
1814
|
+
as: _name
|
|
1815
|
+
}
|
|
1816
|
+
]
|
|
1816
1817
|
});
|
|
1817
1818
|
}
|
|
1818
1819
|
});
|