@kyro-cms/admin 0.9.8 → 0.10.0

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.
@@ -10,7 +10,6 @@ const samplePlugin2: KyroPlugin = {
10
10
  beforeDeploy: (ctx) => {
11
11
  // Lightweight side-effect; in real plugins, you could validate config, migrations, etc.
12
12
  void ctx;
13
- console.log("[Kyro Admin] sample-plugin-2 beforeDeploy");
14
13
  return { success: true };
15
14
  },
16
15
  },
@@ -9,8 +9,6 @@ const samplePlugin: KyroPlugin = {
9
9
  hooks: {
10
10
  onAdminReady: () => {
11
11
  // Lightweight side-effect; in real plugins this could mount UI or register editors
12
- // eslint-disable-next-line no-console
13
- console.log("[ Kyro Admin ] sample-plugin: onAdminReady executed");
14
12
  return;
15
13
  },
16
14
  },