wayfind 2.0.21 → 2.0.22
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/bin/team-context.js +3 -3
- package/package.json +1 -1
package/bin/team-context.js
CHANGED
|
@@ -4629,8 +4629,8 @@ const COMMANDS = {
|
|
|
4629
4629
|
desc: 'Check if installed version meets team minimum (used by hooks)',
|
|
4630
4630
|
run: () => runCheckVersion(),
|
|
4631
4631
|
},
|
|
4632
|
-
|
|
4633
|
-
desc: 'Re-sync hooks and commands
|
|
4632
|
+
resync: {
|
|
4633
|
+
desc: 'Re-sync hooks and commands without npm update (used internally by setup.sh)',
|
|
4634
4634
|
run: () => runUpdate(),
|
|
4635
4635
|
},
|
|
4636
4636
|
'migrate-to-plugin': {
|
|
@@ -4990,7 +4990,7 @@ function showHelp() {
|
|
|
4990
4990
|
console.log(' wayfind standup --all Daily standup across all repos');
|
|
4991
4991
|
console.log('');
|
|
4992
4992
|
console.log('Maintenance:');
|
|
4993
|
-
console.log(' wayfind update
|
|
4993
|
+
console.log(' wayfind update Update from npm, re-sync hooks, update container');
|
|
4994
4994
|
console.log(' wayfind migrate-to-plugin Remove old hooks/commands — let the plugin handle them');
|
|
4995
4995
|
console.log(' wayfind doctor Check installation health');
|
|
4996
4996
|
console.log('');
|
package/package.json
CHANGED