silgi 0.41.60 → 0.41.61
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 +10 -34
- package/dist/cli/index.mjs +1 -1
- package/package.json +1 -1
package/dist/cli/build.mjs
CHANGED
|
@@ -1168,40 +1168,16 @@ async function prepareConfigs(silgi = useSilgiCLI()) {
|
|
|
1168
1168
|
|
|
1169
1169
|
async function prepareScanFile(silgi) {
|
|
1170
1170
|
const { genImports, genTypeImports, addImportItem, addImportItemType } = addImports({
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
{
|
|
1182
|
-
name: "deepMergeObjects"
|
|
1183
|
-
}
|
|
1184
|
-
]
|
|
1185
|
-
},
|
|
1186
|
-
{
|
|
1187
|
-
specifier: "./configs",
|
|
1188
|
-
imports: [
|
|
1189
|
-
{
|
|
1190
|
-
name: "cliConfigs"
|
|
1191
|
-
}
|
|
1192
|
-
]
|
|
1193
|
-
}
|
|
1194
|
-
],
|
|
1195
|
-
typeImports: [
|
|
1196
|
-
{
|
|
1197
|
-
specifier: "silgi/types",
|
|
1198
|
-
imports: [
|
|
1199
|
-
{
|
|
1200
|
-
name: "SilgiRuntimeOptions"
|
|
1201
|
-
}
|
|
1202
|
-
]
|
|
1203
|
-
}
|
|
1204
|
-
]
|
|
1171
|
+
// typeImports: [
|
|
1172
|
+
// {
|
|
1173
|
+
// specifier: 'silgi/types',
|
|
1174
|
+
// imports: [
|
|
1175
|
+
// {
|
|
1176
|
+
// name: 'SilgiRuntimeOptions',
|
|
1177
|
+
// },
|
|
1178
|
+
// ],
|
|
1179
|
+
// },
|
|
1180
|
+
// ],
|
|
1205
1181
|
});
|
|
1206
1182
|
const scanned = {
|
|
1207
1183
|
services: [],
|
package/dist/cli/index.mjs
CHANGED