silgi 0.43.27 → 0.43.28

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.
@@ -63,7 +63,6 @@ async function watchDev() {
63
63
  ]);
64
64
  if (silgi.options.devServer.watch.length > 0) {
65
65
  silgi.options.devServer.watch = [...new Set(silgi.options.devServer.watch)].filter((p) => !isIgnoredByPattern(p));
66
- consola.info(`[silgi] Watching ${silgi.options.devServer.watch.length} paths for changes`);
67
66
  watcher = watch(silgi.options.devServer.watch, silgi.options.watchOptions);
68
67
  watcher.on("all", async (event, path, stats) => {
69
68
  if (!watchReloadEvents.has(event)) return;
@@ -16,7 +16,7 @@ async function installModules(silgi, prepare = false) {
16
16
  moduleCache: true
17
17
  });
18
18
  for (const module of silgi.scanModules) {
19
- if (hasInstalledModule(module.meta.configKey) && !silgi.options.dev) silgi.logger.info(`Module ${module.meta.configKey} installed`);
19
+ if (hasInstalledModule(module.meta.configKey) && !silgi.options.dev) {}
20
20
  try {
21
21
  const silgiModule = module.entryPath !== void 0 ? await jiti.import(module.entryPath, {
22
22
  default: true,
package/dist/package.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  //#region package.json
2
2
  var name = "silgi";
3
3
  var type = "module";
4
- var version = "0.43.27";
4
+ var version = "0.43.28";
5
5
  var private$1 = false;
6
6
  var packageManager = "pnpm@10.12.4";
7
7
  var sideEffects = false;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.43.27",
4
+ "version": "0.43.28",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {