@dx-pkg/mksymlink 1.0.9 → 1.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dx-pkg/mksymlink",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Create symbolic links across platforms (macOS, Windows)",
5
5
  "type": "commonjs",
6
6
  "main": "./src/index.js",
@@ -16,7 +16,7 @@ program
16
16
  .option('-s, --source <path>', 'Source path (defaults to current directory)')
17
17
  .option('-t, --target <path>', 'Target symlink path (auto-generated if not provided)')
18
18
  .option('--type <type>', 'Symlink type for Windows: file, dir, junction (default: junction)', 'junction')
19
- .option('-f, --force', 'Force overwrite existing symlink', false)
19
+ .option('-f, --force', 'Force overwrite existing symlink', true)
20
20
  .action(async (options) => {
21
21
  try {
22
22
  const command = mksymlink_command_factory_1.MkSymlinkCommandFactory.create(options);
@@ -31,8 +31,8 @@ program
31
31
  program
32
32
  .command('quick', { isDefault: true })
33
33
  .description('Quick symlink creation from current directory (default command)')
34
- .option('--type <type>', 'Symlink type for Windows: file, dir, junction (default: dir)', 'dir')
35
- .option('-f, --force', 'Force overwrite existing symlink', false)
34
+ .option('--type <type>', 'Symlink type for Windows: file, dir, junction (default: junction)', 'junction')
35
+ .option('-f, --force', 'Force overwrite existing symlink', true)
36
36
  .action(async (options) => {
37
37
  try {
38
38
  const command = mksymlink_command_factory_1.MkSymlinkCommandFactory.create(options);