claudekit-cli 3.36.0-dev.14 → 3.36.0-dev.15
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/index.js +4 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -51604,7 +51604,8 @@ async function discoverMigrationItems(include, configSource) {
|
|
|
51604
51604
|
configSourcePath ? discoverConfig(configSourcePath) : Promise.resolve(null),
|
|
51605
51605
|
rulesSourcePath ? discoverRules(rulesSourcePath) : Promise.resolve([]),
|
|
51606
51606
|
hooksSource ? discoverHooks(hooksSource).then(({ items, skippedShellHooks }) => {
|
|
51607
|
-
if (skippedShellHooks.length > 0) {
|
|
51607
|
+
if (skippedShellHooks.length > 0 && !shellHookWarningShown) {
|
|
51608
|
+
shellHookWarningShown = true;
|
|
51608
51609
|
console.warn(`[migrate] Skipping ${skippedShellHooks.length} shell hook(s) not supported for migration (node-runnable only): ${skippedShellHooks.join(", ")}`);
|
|
51609
51610
|
}
|
|
51610
51611
|
return items;
|
|
@@ -52253,7 +52254,7 @@ function registerMigrationRoutes(app) {
|
|
|
52253
52254
|
}
|
|
52254
52255
|
});
|
|
52255
52256
|
}
|
|
52256
|
-
var MIGRATION_TYPES, MAX_PROVIDER_COUNT = 20, MAX_PLAN_ACTIONS = 5000, ALLOWED_CONFIG_SOURCE_KEYS, CONFLICT_RESOLUTION_SCHEMA, RECONCILE_ACTION_SCHEMA, RECONCILE_PLAN_SCHEMA, PLAN_EXECUTE_PAYLOAD_SCHEMA, PLURAL_TO_SINGULAR;
|
|
52257
|
+
var MIGRATION_TYPES, MAX_PROVIDER_COUNT = 20, MAX_PLAN_ACTIONS = 5000, ALLOWED_CONFIG_SOURCE_KEYS, CONFLICT_RESOLUTION_SCHEMA, RECONCILE_ACTION_SCHEMA, RECONCILE_PLAN_SCHEMA, PLAN_EXECUTE_PAYLOAD_SCHEMA, PLURAL_TO_SINGULAR, shellHookWarningShown = false;
|
|
52257
52258
|
var init_migration_routes = __esm(() => {
|
|
52258
52259
|
init_agents_discovery();
|
|
52259
52260
|
init_commands_discovery();
|
|
@@ -56008,7 +56009,7 @@ var package_default;
|
|
|
56008
56009
|
var init_package = __esm(() => {
|
|
56009
56010
|
package_default = {
|
|
56010
56011
|
name: "claudekit-cli",
|
|
56011
|
-
version: "3.36.0-dev.
|
|
56012
|
+
version: "3.36.0-dev.15",
|
|
56012
56013
|
description: "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
56013
56014
|
type: "module",
|
|
56014
56015
|
repository: {
|